summaryrefslogtreecommitdiff
path: root/app/Controller
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-05-10 14:36:17 -0400
committerFrederic Guillot <fred@kanboard.net>2015-05-10 14:36:17 -0400
commitc9dcd7061708114c72c0c7d80d108661308b1e50 (patch)
tree6fe0a070425b941d6f420311e302b4b95eda423f /app/Controller
parentb51d41f331b0948add637d5f0f7093b96c268dd0 (diff)
Recurring tasks (#847): template cleanup
Diffstat (limited to 'app/Controller')
-rw-r--r--app/Controller/Board.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php
index e92cfe37..07c99a96 100644
--- a/app/Controller/Board.php
+++ b/app/Controller/Board.php
@@ -360,11 +360,11 @@ class Board extends Base
{
$task = $this->getTask();
- $this->response->html($this->template->render('board/recurrence', array(
+ $this->response->html($this->template->render('task/recurring_info', array(
'task' => $task,
'recurrence_trigger_list' => $this->task->getRecurrenceTriggerList(),
'recurrence_timeframe_list' => $this->task->getRecurrenceTimeframeList(),
'recurrence_basedate_list' => $this->task->getRecurrenceBasedateList(),
- )));
+ )));
}
}