Skip to content

Commit

Permalink
[com_associations] - sort order fix
Browse files Browse the repository at this point in the history
[com_associations] - sort order fix
3/3
  • Loading branch information
alikon committed Mar 20, 2017
1 parent 472097a commit 0a09b18
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
JHtml::_('behavior.multiselect');
JHtml::_('formbehavior.chosen', 'select');

$listOrder = $this->escape($this->state->get('list.ordering'));
$listOrder = $this->escape($this->state->get('list.fullordering'));
$listDirn = $this->escape($this->state->get('list.direction'));
$canManageCheckin = JFactory::getUser()->authorise('core.manage', 'com_checkin');
$colSpan = 5;
Expand Down Expand Up @@ -81,10 +81,10 @@
<?php echo JText::_('JGRID_HEADING_LANGUAGE'); ?>
</th>
<th width="5%" class="nowrap">
<?php echo JHtml::_('searchtools.sort', 'COM_ASSOCIATIONS_HEADING_ASSOCIATION', 'association', $listDirn, $listOrder); ?>
<?php echo JText::_('COM_ASSOCIATIONS_HEADING_ASSOCIATION'); ?>
</th>
<th width="15%" class="nowrap">
<?php echo JHtml::_('searchtools.sort', 'COM_ASSOCIATIONS_HEADING_NO_ASSOCIATION', 'association', $listDirn, $listOrder); ?>
<?php echo JText::_('COM_ASSOCIATIONS_HEADING_ASSOCIATION'); ?>
</th>
<?php if (!empty($this->typeFields['menutype'])) : ?>
<th width="10%" class="nowrap">
Expand Down

0 comments on commit 0a09b18

Please sign in to comment.