Move comment templates to a subfolder

This commit is contained in:
Frédéric Guillot
2014-11-25 21:28:29 -05:00
parent cdfd6a8abe
commit 5fb686dd9c
9 changed files with 49 additions and 57 deletions

View File

@@ -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(),