diff options
-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', )); } } |