Skip to content

Commit

Permalink
Fix bug on column sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
fguillot committed Apr 6, 2015
1 parent e57a4e5 commit 010145e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Template/budget/breakdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -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): ?>
Expand Down

0 comments on commit 010145e

Please sign in to comment.