summaryrefslogtreecommitdiff
path: root/app/Template/task_comments.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-25 21:28:29 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-25 21:28:29 -0500
commit5fb686dd9c5474aba3e274bbe7917e8259aa27e3 (patch)
tree7e9b8ad9b34a1410fe96c5c1fde1ed2db8aef7d6 /app/Template/task_comments.php
parentcdfd6a8abefa6cbea2dbae9e7f758914f7fb465e (diff)
Move comment templates to a subfolder
Diffstat (limited to 'app/Template/task_comments.php')
-rw-r--r--app/Template/task_comments.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/task_comments.php b/app/Template/task_comments.php
index 5cfa99ce..343e66c5 100644
--- a/app/Template/task_comments.php
+++ b/app/Template/task_comments.php
@@ -5,7 +5,7 @@
</div>
<?php foreach ($comments as $comment): ?>
- <?= Helper\template('comment_show', array(
+ <?= Helper\template('comment/show', array(
'comment' => $comment,
'task' => $task,
'project' => $project,
@@ -15,7 +15,7 @@
<?php endforeach ?>
<?php if (! isset($not_editable)): ?>
- <?= Helper\template('comment_create', array(
+ <?= Helper\template('comment/create', array(
'skip_cancel' => true,
'values' => array(
'user_id' => Helper\get_user_id(),