* Handle feedback #863.

This commit is contained in:
hufangzhou
2022-09-21 09:46:38 +08:00
parent 7af73dc220
commit 0dad4d834f
3 changed files with 39 additions and 6 deletions
+5 -1
View File
@@ -941,7 +941,11 @@ class task extends control
}
$execution = $this->execution->getById($task->execution);
if(!isonlybody() and $execution->type == 'kanban') return print(js::locate($this->createLink('execution', 'kanban', "executionID=$execution->id")));
if(!isonlybody() and $execution->type == 'kanban')
{
setcookie('taskID', $taskID, 0, $this->config->webRoot, '', false, false);
return print(js::locate($this->createLink('execution', 'kanban', "executionID=$execution->id")));
}
$this->session->project = $task->project;