diff options
Diffstat (limited to 'app/Model')
-rw-r--r-- | app/Model/ProjectAnalytic.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/Model/ProjectAnalytic.php b/app/Model/ProjectAnalytic.php index 79277e79..d23695dc 100644 --- a/app/Model/ProjectAnalytic.php +++ b/app/Model/ProjectAnalytic.php @@ -202,14 +202,14 @@ class ProjectAnalytic extends Base // Init values $stats['closed'] = array( - 'time_spent' => 0, - 'time_estimated' => 0, - ); - $stats['open'] = array( - 'time_spent' => 0, - 'time_estimated' => 0, - ); + 'time_spent' => 0, + 'time_estimated' => 0, + ); + $stats['open'] = array( + 'time_spent' => 0, + 'time_estimated' => 0, + ); // Add times spent and estimated to each status foreach ($tasks as &$task) { |