summaryrefslogtreecommitdiff
path: root/app/Controller/Link.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-05-24 16:47:41 -0400
committerFrederic Guillot <fred@kanboard.net>2015-05-24 16:47:41 -0400
commit1a0465cb57818fd302da8bd7a27b9a78415d1804 (patch)
treebc56dd3ded941267fe034374283f893438ba74f7 /app/Controller/Link.php
parent03fc8a1bce033cc8334f588f3c95baffa1291b54 (diff)
Fix PhpAnalyzer issues
Diffstat (limited to 'app/Controller/Link.php')
-rw-r--r--app/Controller/Link.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Link.php b/app/Controller/Link.php
index 8eac8494..482e415c 100644
--- a/app/Controller/Link.php
+++ b/app/Controller/Link.php
@@ -71,7 +71,7 @@ class Link extends Base
if ($valid) {
- if ($this->link->create($values['label'], $values['opposite_label'])) {
+ if ($this->link->create($values['label'], $values['opposite_label']) !== false) {
$this->session->flash(t('Link added successfully.'));
$this->response->redirect($this->helper->url->to('link', 'index'));
}