summaryrefslogtreecommitdiff
path: root/app/Template
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-04-05 20:49:35 -0400
committerFrederic Guillot <fred@kanboard.net>2015-04-05 20:49:35 -0400
commit010145e36c6cd5ac7ebb453ea19e70e384c0e870 (patch)
tree46e751b16e06a13e3846ab07b6bddf1ff6c44faf /app/Template
parente57a4e52e2ea1b1b4ace3b97196698ee2af9ac9f (diff)
Fix bug on column sorting
Diffstat (limited to 'app/Template')
-rw-r--r--app/Template/budget/breakdown.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/budget/breakdown.php b/app/Template/budget/breakdown.php
index 0a3c63d7..51044c46 100644
--- a/app/Template/budget/breakdown.php
+++ b/app/Template/budget/breakdown.php
@@ -15,7 +15,7 @@
<th class="column-25"><?= $paginator->order(t('Subtask'), 'subtask_title') ?></th>
<th class="column-20"><?= $paginator->order(t('User'), 'username') ?></th>
<th class="column-10"><?= t('Cost') ?></th>
- <th class="column-10"><?= $paginator->order(t('Time spent'), 'time_spent') ?></th>
+ <th class="column-10"><?= $paginator->order(t('Time spent'), \Model\SubtaskTimeTracking::TABLE.'.time_spent') ?></th>
<th class="column-15"><?= $paginator->order(t('Date'), 'start') ?></th>
</tr>
<?php foreach ($paginator->getCollection() as $record): ?>