Add dropdown menu with inline popup for all task actions

This commit is contained in:
Frederic Guillot
2016-02-03 20:53:07 -05:00
parent 6d388ec48d
commit 346151e103
25 changed files with 207 additions and 189 deletions

View File

@@ -28,7 +28,7 @@ class Taskduplication extends Base
$this->response->redirect($this->helper->url->to('task', 'show', array('project_id' => $task['project_id'], 'task_id' => $task_id)));
} else {
$this->flash->failure(t('Unable to create this task.'));
$this->response->redirect($this->helper->url->to('taskduplication', 'duplicate', array('project_id' => $task['project_id'], 'task_id' => $task['id'])));
$this->response->redirect($this->helper->url->to('taskduplication', 'duplicate', array('project_id' => $task['project_id'], 'task_id' => $task['id'])), true);
}
}