From df50a3299ba6a02fd3649250191c6f8aab5146d5 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Wed, 27 Dec 2023 15:03:47 +0800 Subject: [PATCH] * Fix a error when activate a task. --- module/task/zen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/task/zen.php b/module/task/zen.php index d2f0c88ac8..df38272a95 100644 --- a/module/task/zen.php +++ b/module/task/zen.php @@ -1724,7 +1724,7 @@ class taskZen extends task /* Remind whether to update status of the bug, if task which from that bug has been finished. */ if($changes and $this->task->needUpdateBugStatus($task)) { - $response = $this->taskTao->getRemindBugLink($task, $changes); + $response = $this->task->getRemindBugLink($task, $changes); if($response) return print(js::confirm(sprintf($this->lang->task->remindBug, $task->fromBug), $response['confirmed'], $response['canceled'], 'parent', 'parent.parent')); }