summaryrefslogtreecommitdiff
path: root/app/Model/TaskFilter.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-02-20 15:08:18 -0500
committerFrederic Guillot <fred@kanboard.net>2016-02-20 15:08:18 -0500
commitfc468088c3b39bc4e9d185683442db1d36b61e23 (patch)
tree6f5b6a1e13f528a8f54ac502ab428feadc53e5f5 /app/Model/TaskFilter.php
parent83832522867d06241441c04d2b3237200db57224 (diff)
Split Board model into multiple classes
Diffstat (limited to 'app/Model/TaskFilter.php')
-rw-r--r--app/Model/TaskFilter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/TaskFilter.php b/app/Model/TaskFilter.php
index 7ceb4a97..1883298d 100644
--- a/app/Model/TaskFilter.php
+++ b/app/Model/TaskFilter.php
@@ -469,7 +469,7 @@ class TaskFilter extends Base
$this->query->beginOr();
foreach ($values as $project) {
- $this->query->ilike(Board::TABLE.'.title', $project);
+ $this->query->ilike(Column::TABLE.'.title', $project);
}
$this->query->closeOr();