From f9021ab3ed953d9c99fce1ffa96a58d6aba86100 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 9 Nov 2017 17:36:25 +0100 Subject: [PATCH] Fix #17 --- Controller.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/Controller.php b/Controller.php index 10bcf68..fa059c1 100644 --- a/Controller.php +++ b/Controller.php @@ -384,7 +384,6 @@ class Controller extends ModuleAbstract implements WebInterface $column = new KanbanColumn(); $column->setName($request->getData('title')); - $column->setDescription($request->getData('plain')); $column->setOrder((int) $request->getData('order')); return $column; @@ -395,7 +394,6 @@ class Controller extends ModuleAbstract implements WebInterface $val = []; if ( ($val['title'] = empty($request->getData('title'))) - || ($val['plain'] = empty($request->getData('plain'))) || ($val['order'] = empty($request->getData('order'))) ) { return $val;