Rename template file, fix #394

This commit is contained in:
Frédéric Guillot 2014-11-13 19:46:45 -05:00
parent 5ca9a12a0a
commit 84770123b4
1 changed files with 6 additions and 1 deletions

View File

@ -21,7 +21,12 @@
<?php foreach ($column['tasks'] as $task): ?>
<div class="task-board task-<?= $task['color_id'] ?>">
<?= Helper\template('board/task', array('task' => $task, 'categories' => $categories, 'not_editable' => true, 'project' => $project)) ?>
<?= Helper\template('board/task', array(
'task' => $task,
'categories' => $categories,
'not_editable' => true,
'project' => $project
)) ?>
</div>
<?php endforeach ?>