18 months ago
This looks to be occurring in render_page.inc.php around line 583. It is trying to access a form field (task_name) which does not exist.
guest:Solution to edit task problem
15 months ago - visible as suggested - Delete
I've solved this problem on my machine by applying the following patch to task_edit.inc.php:
--- pages/task_edit.inc.php.orig 2010-12-06 07:03:58.000000000 -0600
+++ pages/task_edit.inc.php 2010-12-06 07:00:29.000000000 -0600
@@ -17,6 +17,7 @@
require_once(confGet('DIR_STREBER') . 'db/class_issue.inc.php');
require_once(confGet('DIR_STREBER') . 'db/class_task.inc.php');
require_once(confGet('DIR_STREBER') . 'db/class_project.inc.php');
+require_once(confGet('DIR_STREBER') . 'render/render_block.inc.php');
/**