From 1484b1c39cac6af68038420b8525620a5424d4ab Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Thu, 20 Aug 2015 21:26:42 -0400 Subject: Show closed tasks on the Gantt chart and fix rounding for task progress --- app/Controller/Gantt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Controller') diff --git a/app/Controller/Gantt.php b/app/Controller/Gantt.php index 6f3fb5c7..f450bca3 100644 --- a/app/Controller/Gantt.php +++ b/app/Controller/Gantt.php @@ -19,7 +19,7 @@ class Gantt extends Base { $project = $this->getProject(); $sorting = $this->request->getStringParam('sorting', 'board'); - $filter = $this->taskFilter->gantt()->filterByProject($project['id'])->filterByStatus(TaskModel::STATUS_OPEN); + $filter = $this->taskFilter->gantt()->filterByProject($project['id']); if ($sorting === 'date') { $filter->query->asc(TaskModel::TABLE.'.date_started')->asc(TaskModel::TABLE.'.date_creation'); -- cgit v1.2.3