summaryrefslogtreecommitdiff
path: root/app/Model
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-04-11 23:04:19 -0400
committerFrederic Guillot <fred@kanboard.net>2015-04-11 23:04:19 -0400
commit3f38d81f7965752a66049944d2ef13975d2e2ab4 (patch)
tree54eaba14d701ce35c9cdc91c668b930f79d1c95a /app/Model
parent9ca2ba21272ddb1958e0b5b2f5842cde42508139 (diff)
Include all tasks for daily project summaries
Diffstat (limited to 'app/Model')
-rw-r--r--app/Model/ProjectDailySummary.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/Model/ProjectDailySummary.php b/app/Model/ProjectDailySummary.php
index 9e7c836a..65a612f6 100644
--- a/app/Model/ProjectDailySummary.php
+++ b/app/Model/ProjectDailySummary.php
@@ -59,7 +59,6 @@ class ProjectDailySummary extends Base
'total' => $db->table(Task::TABLE)
->eq('project_id', $project_id)
->eq('column_id', $column_id)
- ->eq('is_active', Task::STATUS_OPEN)
->count()
));
}