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 . '';