diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-16 22:04:41 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-16 22:04:41 -0500 |
commit | 697e661ef5bc17c0639a2bfed08307f8e113816d (patch) | |
tree | f6a01556cbd147922c7ea6f1e3d8b02898b369a0 /app/Template/comment/create.php | |
parent | 14ba39be8d78761fb322e0e0860c6344eebc2153 (diff) | |
parent | 32cd7c15085023b8526e8fba22d5fbad7d6b8679 (diff) |
Merge pull-request #629
Diffstat (limited to 'app/Template/comment/create.php')
-rw-r--r-- | app/Template/comment/create.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/Template/comment/create.php b/app/Template/comment/create.php index 1bdbac49..2ef3ee59 100644 --- a/app/Template/comment/create.php +++ b/app/Template/comment/create.php @@ -2,7 +2,7 @@ <h2><?= t('Add a comment') ?></h2> </div> -<form method="post" action="<?= $this->u('comment', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off"> +<form method="post" action="<?= $this->u('comment', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'ajax' => $ajax)) ?>" autocomplete="off"> <?= $this->formCsrf() ?> <?= $this->formHidden('task_id', $values) ?> <?= $this->formHidden('user_id', $values) ?> @@ -30,7 +30,11 @@ <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> <?php if (! isset($skip_cancel)): ?> <?= t('or') ?> - <?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> + <?php if ($ajax): ?> + <?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $task['project_id'])) ?> + <?php else: ?> + <?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> + <?php endif ?> <?php endif ?> </div> </form> |