diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-04 22:08:42 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-04 22:08:42 -0400 |
commit | 4fb57006a08e06a344e1a2671b2c61490d472e7e (patch) | |
tree | 7819f3dc2f0355b88d8f0b524c4ddcc03e0bb4fb /app/Template/task | |
parent | 6bdc25490f02649242b1d96025f8da1f4c41884b (diff) |
Added generic controller for task popovers
Diffstat (limited to 'app/Template/task')
-rw-r--r-- | app/Template/task/dropdown.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/task/dropdown.php b/app/Template/task/dropdown.php index 567249df..9771b241 100644 --- a/app/Template/task/dropdown.php +++ b/app/Template/task/dropdown.php @@ -9,11 +9,11 @@ <?php endif ?> <li> <i class="fa fa-user fa-fw"></i> - <?= $this->url->link(t('Change assignee'), 'BoardPopover', 'changeAssignee', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?> + <?= $this->url->link(t('Change assignee'), 'TaskPopover', 'changeAssignee', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?> </li> <li> <i class="fa fa-tag fa-fw"></i> - <?= $this->url->link(t('Change category'), 'BoardPopover', 'changeCategory', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?> + <?= $this->url->link(t('Change category'), 'TaskPopover', 'changeCategory', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?> </li> <li> <i class="fa fa-pencil-square-o fa-fw"></i> @@ -41,7 +41,7 @@ </li> <li> <i class="fa fa-camera fa-fw"></i> - <?= $this->url->link(t('Add a screenshot'), 'BoardPopover', 'screenshot', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?> + <?= $this->url->link(t('Add a screenshot'), 'TaskPopover', 'screenshot', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?> </li> <li> <i class="fa fa-files-o fa-fw"></i> |