diff options
author | Frédéric Guillot <fred@kanboard.net> | 2015-01-02 21:48:26 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2015-01-02 21:48:26 -0500 |
commit | 0ebdd4ddfd898628cc30e34e55e97f88e5e30a71 (patch) | |
tree | 4038cd9ad1ad440b033d221b4ffd637ec03a538d /app/Controller/Swimlane.php | |
parent | 45c95d74fc2115fe4cc7214553c0927d3ce9df8d (diff) |
Cleanup and fixes
Diffstat (limited to 'app/Controller/Swimlane.php')
-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 10b29569..de2f1f12 100644 --- a/app/Controller/Swimlane.php +++ b/app/Controller/Swimlane.php @@ -87,7 +87,7 @@ class Swimlane extends Base $project = $this->getProject(); $values = $this->request->getValues(); - list($valid, $errors) = $this->swimlane->validateDefaultModification($values); + list($valid,) = $this->swimlane->validateDefaultModification($values); if ($valid) { |