summaryrefslogtreecommitdiff
path: root/app/Controller/Board.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/Board.php')
-rw-r--r--app/Controller/Board.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php
index 0de6f297..5851bd26 100644
--- a/app/Controller/Board.php
+++ b/app/Controller/Board.php
@@ -136,7 +136,7 @@ class Board extends Base
}
$values = $this->request->getJson();
- $this->userSession->setFilters($project_id, $values['search']);
+ $this->userSession->setFilters($project_id, empty($values['search']) ? '' : $values['search']);
$this->response->html($this->renderBoard($project_id));
}