diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-28 20:26:23 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-28 20:26:23 -0400 |
commit | 937079709514c037959d691c0d653c39d5ea84e6 (patch) | |
tree | 37e0d6c28c0b2294d433e48e454358ced66ac6c9 /app/Controller/CustomFilterController.php | |
parent | 729c933d001d699837d90d151acbed1093a8c6f5 (diff) |
Minor fixes
Diffstat (limited to 'app/Controller/CustomFilterController.php')
-rw-r--r-- | app/Controller/CustomFilterController.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app/Controller/CustomFilterController.php b/app/Controller/CustomFilterController.php index 8bba0856..e5f674cd 100644 --- a/app/Controller/CustomFilterController.php +++ b/app/Controller/CustomFilterController.php @@ -18,6 +18,9 @@ class CustomFilterController extends BaseController * Display list of filters * * @access public + * @param array $values + * @param array $errors + * @throws \Kanboard\Core\Controller\PageNotFoundException */ public function index(array $values = array(), array $errors = array()) { @@ -47,7 +50,7 @@ class CustomFilterController extends BaseController list($valid, $errors) = $this->customFilterValidator->validateCreation($values); if ($valid) { - if ($this->customFilterModel->create($values)) { + if ($this->customFilterModel->create($values) !== false) { $this->flash->success(t('Your custom filter have been created successfully.')); return $this->response->redirect($this->helper->url->to('CustomFilterController', 'index', array('project_id' => $project['id']))); } else { @@ -101,6 +104,10 @@ class CustomFilterController extends BaseController * Edit a custom filter (display the form) * * @access public + * @param array $values + * @param array $errors + * @throws AccessForbiddenException + * @throws \Kanboard\Core\Controller\PageNotFoundException */ public function edit(array $values = array(), array $errors = array()) { |