diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-21 22:28:28 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-21 22:28:28 -0400 |
commit | c9ba525bab06eff76b1d5fb8701848d0e3990122 (patch) | |
tree | fe294f6dcd3c5a53b398118f2803f5b129922c8a /app/Controller | |
parent | 0a9b6f0d999596cb46201b7df4373fdabd683cf7 (diff) |
Show swimlane dropdown only when necessary
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/Task.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Task.php b/app/Controller/Task.php index 060a478c..c2e66245 100644 --- a/app/Controller/Task.php +++ b/app/Controller/Task.php @@ -113,7 +113,7 @@ class Task extends Base { $project = $this->getProject(); $method = $this->request->isAjax() ? 'render' : 'layout'; - $swimlanes_list = $this->swimlane->getList($project['id']); + $swimlanes_list = $this->swimlane->getList($project['id'], false, true); if (empty($values)) { |