diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-24 20:39:06 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-24 20:39:06 -0400 |
commit | 6efac784fcc1a2e83bb7b43fc7841448b5975cba (patch) | |
tree | a083b3c8b86deca9c4f23bcb15cfafeec86924e8 /app/Model/TaskFinder.php | |
parent | 58c96b8c4ec3f326b25e6b55f133fc067345cd57 (diff) |
Add timer for subtasks and remove settings for subtask time tracking
Diffstat (limited to 'app/Model/TaskFinder.php')
-rw-r--r-- | app/Model/TaskFinder.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Model/TaskFinder.php b/app/Model/TaskFinder.php index 234101ec..ead60b4b 100644 --- a/app/Model/TaskFinder.php +++ b/app/Model/TaskFinder.php @@ -316,7 +316,7 @@ class TaskFinder extends Base ->table(Task::TABLE) ->eq('project_id', $project_id) ->eq('column_id', $column_id) - ->in('is_active', 1) + ->eq('is_active', 1) ->count(); } @@ -336,7 +336,7 @@ class TaskFinder extends Base ->eq('project_id', $project_id) ->eq('column_id', $column_id) ->eq('swimlane_id', $swimlane_id) - ->in('is_active', 1) + ->eq('is_active', 1) ->count(); } |