diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-26 21:48:48 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-26 21:48:48 -0400 |
commit | 58c74b80d2c9b8d51df91a7287a22e5d3f99391c (patch) | |
tree | 1fb8207a79abc4dd31a24ea255a655751cadabdb /app/Controller/Board.php | |
parent | 66514aa530cfb3b84f01e5eb578d35b4178e651e (diff) |
Append filters instead of replacing value for users and categories dropdowns
Diffstat (limited to 'app/Controller/Board.php')
-rw-r--r-- | app/Controller/Board.php | 2 |
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)); } |