diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-06-07 15:02:10 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-06-07 15:02:10 -0700 |
commit | 9d4be201aaaeaac23f4b18fb6c91caca857a2f0f (patch) | |
tree | 0b669aa0d7d382679100a69c0f9a59287b906568 /app/Template/task_list/task_title.php | |
parent | dfea2f23653644b574322a5199c120a32e1f29f3 (diff) |
Add quick link assign me in different views
Diffstat (limited to 'app/Template/task_list/task_title.php')
-rw-r--r-- | app/Template/task_list/task_title.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/task_list/task_title.php b/app/Template/task_list/task_title.php index 92d61b6c..662ce1e5 100644 --- a/app/Template/task_list/task_title.php +++ b/app/Template/task_list/task_title.php @@ -3,7 +3,7 @@ <?php if (isset($show_items_selection)): ?> <input type="checkbox" data-list-item="selectable" name="tasks[]" value="<?= $task['id'] ?>"> <?php endif ?> - <?= $this->render('task/dropdown', array('task' => $task)) ?> + <?= $this->render('task/dropdown', array('task' => $task, 'redirect' => isset($redirect) ? $redirect : '')) ?> <?php else: ?> <strong><?= '#'.$task['id'] ?></strong> <?php endif ?> |