summaryrefslogtreecommitdiff
path: root/app/Controller
diff options
context:
space:
mode:
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(),
- )));
+ )));
}
}