summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--app/Controller/ProjectCreation.php2
-rw-r--r--app/Controller/SubtaskStatus.php1
3 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bf5d3d6c..a59439a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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',
));
}
}