diff --git a/module/execution/control.php b/module/execution/control.php index 5413b388d4..09a18644ef 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -3068,7 +3068,7 @@ class execution extends control $task->begin = !helper::isZeroDate($task->estStarted) ? $task->estStarted : ''; $task->end = !helper::isZeroDate($task->deadline) ? $task->deadline : ''; $task->realBegan = !helper::isZeroDate($task->realStarted) ? $task->realStarted : ''; - $task->realEnd = !helper::isZeroDate($task->realFinished) ? $task->realFinished : ''; + $task->realEnd = !helper::isZeroDate($task->finishedDate) ? $task->finishedDate : ''; $task->PM = zget($users, $task->assignedTo); $rows[] = $task; }