diff --git a/module/execution/model.php b/module/execution/model.php
index 3e21ab49b5..b3f5a7cd58 100755
--- a/module/execution/model.php
+++ b/module/execution/model.php
@@ -5295,10 +5295,10 @@ class executionModel extends model
echo '
' . zget($users, $execution->PM) . ' | ';
echo helper::isZeroDate($execution->begin) ? ' | ' : '' . $execution->begin . ' | ';
echo helper::isZeroDate($execution->end) ? ' | ' : '' . $execution->end . ' | ';
- echo "" . $execution->hours->totalEstimate . $this->lang->execution->workHourUnit . ' | ';
- echo "" . $execution->hours->totalConsumed . $this->lang->execution->workHourUnit . ' | ';
- echo "" . $execution->hours->totalLeft . $this->lang->execution->workHourUnit . ' | ';
- echo '' . html::ring($execution->hours->progress) . ' | ';
+ echo "" . $execution->estimate . $this->lang->execution->workHourUnit . ' | ';
+ echo "" . $execution->consumed . $this->lang->execution->workHourUnit . ' | ';
+ echo "" . $execution->left . $this->lang->execution->workHourUnit . ' | ';
+ echo '' . html::ring($execution->progress) . ' | ';
echo " | ";
echo '';
common::printIcon('execution', 'start', "executionID={$execution->id}", $execution, 'list', '', '', 'iframe', true);
|