diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-26 21:38:43 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-26 21:38:43 -0400 |
commit | 9ebbe3da56914c408327997cea4eb00db2f88e0c (patch) | |
tree | 92a40db64f958abff457add4aa643fc6154a05d3 /app/Template/task_internal_link/create.php | |
parent | 33dea152fc6b0c061b1f61060cc75710dd0ec236 (diff) |
Rename task controllers
Diffstat (limited to 'app/Template/task_internal_link/create.php')
-rw-r--r-- | app/Template/task_internal_link/create.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/task_internal_link/create.php b/app/Template/task_internal_link/create.php index 94dcdd66..87b3fd28 100644 --- a/app/Template/task_internal_link/create.php +++ b/app/Template/task_internal_link/create.php @@ -2,7 +2,7 @@ <h2><?= t('Add a new link') ?></h2> </div> -<form class="popover-form" action="<?= $this->url->href('TaskInternalLink', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" method="post" autocomplete="off"> +<form class="popover-form" action="<?= $this->url->href('TaskInternalLinkController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" method="post" autocomplete="off"> <?= $this->form->csrf() ?> <?= $this->form->hidden('task_id', array('task_id' => $task['id'])) ?> @@ -30,4 +30,4 @@ <?= t('or') ?> <?= $this->url->link(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'close-popover') ?> </div> -</form>
\ No newline at end of file +</form> |