Fix ambiguous column name with very old version of Sqlite

This commit is contained in:
Frederic Guillot
2016-03-04 22:21:54 -05:00
parent f9f5d7188b
commit 9b68c3bc77
3 changed files with 7 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
<tr>
<th class="column-5"><?= $paginator->order('Id', 'id') ?></th>
<th class="column-3"><?= $paginator->order('<i class="fa fa-lock fa-fw" title="'.t('Private project').'"></i>', 'is_private') ?></th>
<th class="column-25"><?= $paginator->order(t('Project'), 'name') ?></th>
<th class="column-25"><?= $paginator->order(t('Project'), \Kanboard\Model\Project::TABLE.'.name') ?></th>
<th><?= t('Columns') ?></th>
</tr>
<?php foreach ($paginator->getCollection() as $project): ?>