* Fix bug #26002,25249

This commit is contained in:
liuyongkai
2022-08-05 03:29:29 +00:00
parent 8837c4c100
commit 697ecffce7
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -4392,7 +4392,7 @@ class executionModel extends model
{
if($execution->status != 'closed')
{
echo strtotime($today) > strtotime($execution->end) ? '<td class="delayed" title="已延期">' . $execution->end . '</td>' : '<td>' . $execution->end . '</td>';
echo strtotime($today) > strtotime($execution->end) ? '<td class="delayed" title="' . $this->lang->execution->delayed . '">' . $execution->end . '</td>' : '<td>' . $execution->end . '</td>';
}
else
{