summaryrefslogtreecommitdiff
path: root/app/Controller
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-03-28 18:32:40 -0400
committerFrederic Guillot <fred@kanboard.net>2015-03-28 18:32:40 -0400
commitf9891a966fb87d2112f174b7c3a1b3a705b73bdd (patch)
treead03f84cd0122a007150ea827d1615d0cea74888 /app/Controller
parent0f0f7e4b27c97f76649b4c866dde02cc809ba63d (diff)
Fix PHP notice
Diffstat (limited to 'app/Controller')
-rw-r--r--app/Controller/Swimlane.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Swimlane.php b/app/Controller/Swimlane.php
index de2f1f12..e10d21f1 100644
--- a/app/Controller/Swimlane.php
+++ b/app/Controller/Swimlane.php
@@ -86,7 +86,7 @@ class Swimlane extends Base
{
$project = $this->getProject();
- $values = $this->request->getValues();
+ $values = $this->request->getValues() + array('show_default_swimlane' => 0);
list($valid,) = $this->swimlane->validateDefaultModification($values);
if ($valid) {