* Modify the progress field of the program.

This commit is contained in:
tianshujie
2022-11-01 08:37:15 +08:00
parent fefb7b760c
commit d15ed1e77d
+1 -1
View File
@@ -1658,7 +1658,7 @@ class programModel extends model
$html = $program->end == LONG_TIME ? $this->lang->program->longTime : $program->end;
break;
case 'progress':
$html = round($progressList[$program->id]);
$html = isset($progressList[$program->id]) ? round($progressList[$program->id]) : 0;
break;
case 'actions':
$html = $this->buildOperateMenu($program, 'browse');