summaryrefslogtreecommitdiff
path: root/app/Template/subtask/show.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-02-07 09:34:05 -0500
committerFrederic Guillot <fred@kanboard.net>2016-02-07 09:34:05 -0500
commit07dd8882e813d03dd2121a21cda8afd19ee90fc9 (patch)
treecbf94d5c3025c55c235a10f8b17d2e926f745724 /app/Template/subtask/show.php
parent3fa445fce49d6c7e14e5b0cbc76e5fe2c52f73ba (diff)
Fix subtask redirection
Diffstat (limited to 'app/Template/subtask/show.php')
-rw-r--r--app/Template/subtask/show.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/subtask/show.php b/app/Template/subtask/show.php
index b0326c48..bd999496 100644
--- a/app/Template/subtask/show.php
+++ b/app/Template/subtask/show.php
@@ -4,7 +4,7 @@
<div id="subtasks">
- <?= $this->render('subtask/table', array('subtasks' => $subtasks, 'task' => $task, 'editable' => $editable)) ?>
+ <?= $this->render('subtask/table', array('subtasks' => $subtasks, 'task' => $task, 'editable' => $editable, 'redirect' => $redirect)) ?>
<?php if ($editable && $this->user->hasProjectAccess('subtask', 'save', $task['project_id'])): ?>
<form method="post" action="<?= $this->url->href('subtask', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">