diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-02-08 18:24:15 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-02-08 18:24:15 -0500 |
commit | ac2bf9d553abf17ca9f24cb5dcbfc011d4486215 (patch) | |
tree | b0c7faa1cb5956840bd44c0624a44b91c8a781b2 | |
parent | 03e459fca79beeda8f94630de63ae4e37bbcf6b6 (diff) |
Fix PHP notices during creation of first project and in subtasks table
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | app/Controller/ProjectCreation.php | 2 | ||||
-rw-r--r-- | app/Controller/SubtaskStatus.php | 1 |
3 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,10 @@ +Version 1.0.26 (unreleased) +-------------- + +Bug fixes: + +* Fix PHP notices during creation of first project and in subtasks table + Version 1.0.25 -------------- diff --git a/app/Controller/ProjectCreation.php b/app/Controller/ProjectCreation.php index 61ea2586..88f41fcd 100644 --- a/app/Controller/ProjectCreation.php +++ b/app/Controller/ProjectCreation.php @@ -73,7 +73,7 @@ class ProjectCreation extends Base */ private function createOrDuplicate(array $values) { - if ($values['src_project_id'] == 0) { + if (empty($values['src_project_id'])) { return $this->createNewProject($values); } diff --git a/app/Controller/SubtaskStatus.php b/app/Controller/SubtaskStatus.php index ef0ec081..4fb82fc0 100644 --- a/app/Controller/SubtaskStatus.php +++ b/app/Controller/SubtaskStatus.php @@ -66,6 +66,7 @@ class SubtaskStatus extends Base 'task' => $task, 'subtasks' => $this->subtask->getAll($task['id']), 'editable' => true, + 'redirect' => 'task', )); } } |