From ab120261c6bb668ec3c00e1f79f8c4b33d2592e2 Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Wed, 5 Jul 2023 17:17:52 +0800 Subject: [PATCH] * Code for task #96539. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index 016e0ba2f2..00aa7fd7f0 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -5311,7 +5311,7 @@ class executionModel extends model echo "" . zget($this->lang->project->statusList, $execution->status) . ''; echo '' . zget($users, $execution->PM) . ''; echo helper::isZeroDate($execution->begin) ? '' : '' . $execution->begin . ''; - echo helper::isZeroDate($execution->end) ? '' : '' . $execution->end . ''; + echo helper::isZeroDate($execution->end) ? '' : '' . $execution->end . ''; echo "" . $execution->estimate . $this->lang->execution->workHourUnit . ''; echo "" . $execution->consumed . $this->lang->execution->workHourUnit . ''; echo "" . $execution->left . $this->lang->execution->workHourUnit . '';