diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-12-04 20:02:43 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-12-04 20:02:43 -0500 |
commit | 0f9ad1966af87423db2e4cbcf8126d2056b78593 (patch) | |
tree | 0e8b4879cf245302537b1fc7098a062337465981 /app/Template/board/subtasks.php | |
parent | 73e228225909ad25e2e466fef8aa27a45ea247f0 (diff) | |
parent | 8005d4f070944abe179707f9e7c4701abe2733a1 (diff) |
Merge pull-request #444, Allow click on subtask status icon to toggle
Diffstat (limited to 'app/Template/board/subtasks.php')
-rw-r--r-- | app/Template/board/subtasks.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/Template/board/subtasks.php b/app/Template/board/subtasks.php index c7f995d7..53330022 100644 --- a/app/Template/board/subtasks.php +++ b/app/Template/board/subtasks.php @@ -1,9 +1,7 @@ <section id="tooltip-subtasks"> <?php foreach ($subtasks as $subtask): ?> - <?= Helper\template('subtask/icons', array('subtask' => $subtask)) ?> - <?= Helper\a( - Helper\escape($subtask['title']), + trim(Helper\template('subtask/icons', array('subtask' => $subtask))) . Helper\escape($subtask['title']), 'board', 'toggleSubtask', array('task_id' => $subtask['task_id'], 'subtask_id' => $subtask['id']) @@ -13,4 +11,4 @@ <br/> <?php endforeach ?> -</section>
\ No newline at end of file +</section> |