diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-08 19:59:17 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-08 19:59:17 -0400 |
commit | f4fc02130ad7ee10f25baceb6bd00511d9de259d (patch) | |
tree | 40177d1b56af968117a53d1081b6e3a3a120b3af /app/Controller | |
parent | 61fb47bf3a595acf3c85707426890b2338b1d9b4 (diff) |
Fix bug: No creator when duplicating a task
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/Task.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/Controller/Task.php b/app/Controller/Task.php index 162b0ddd..0d85f411 100644 --- a/app/Controller/Task.php +++ b/app/Controller/Task.php @@ -152,7 +152,6 @@ class Task extends Base { $project = $this->getProject(); $values = $this->request->getValues(); - $values['creator_id'] = $this->userSession->getId(); list($valid, $errors) = $this->taskValidator->validateCreation($values); |