diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-04-05 20:49:35 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-04-05 20:49:35 -0400 |
commit | 010145e36c6cd5ac7ebb453ea19e70e384c0e870 (patch) | |
tree | 46e751b16e06a13e3846ab07b6bddf1ff6c44faf /app/Template/budget | |
parent | e57a4e52e2ea1b1b4ace3b97196698ee2af9ac9f (diff) |
Fix bug on column sorting
Diffstat (limited to 'app/Template/budget')
-rw-r--r-- | app/Template/budget/breakdown.php | 2 |
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): ?> |