diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-03-28 18:32:40 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-03-28 18:32:40 -0400 |
commit | f9891a966fb87d2112f174b7c3a1b3a705b73bdd (patch) | |
tree | ad03f84cd0122a007150ea827d1615d0cea74888 | |
parent | 0f0f7e4b27c97f76649b4c866dde02cc809ba63d (diff) |
Fix PHP notice
-rw-r--r-- | app/Controller/Swimlane.php | 2 |
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) { |