Fix bug on column sorting

This commit is contained in:
Frederic Guillot 2015-04-05 20:49:35 -04:00
parent e57a4e52e2
commit 010145e36c
1 changed files with 1 additions and 1 deletions

View File

@ -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): ?>