Skip to content

Commit

Permalink
remove com_associations from the change as there is no point - thanks @…
Browse files Browse the repository at this point in the history
…infograf768 for pointing that out
  • Loading branch information
brianteeman committed Jul 14, 2017
1 parent 16fd41a commit 3723eed
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,9 @@
<th class="nowrap">
<?php echo JHtml::_('searchtools.sort', 'JGLOBAL_TITLE', 'title', $listDirn, $listOrder); ?>
</th>
<?php if (JLanguageMultilang::isEnabled()) : ?>
<th style="width:15%" class="nowrap ">
<?php echo JHtml::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'language', $listDirn, $listOrder); ?>
</th>
<?php endif; ?>
<th style="width:15%" class="nowrap ">
<?php echo JHtml::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'language', $listDirn, $listOrder); ?>
</th>
<th style="width:5%" class="nowrap">
<?php echo JText::_('COM_ASSOCIATIONS_HEADING_ASSOCIATION'); ?>
</th>
Expand Down Expand Up @@ -120,11 +118,9 @@
</div>
<?php endif; ?>
</td>
<?php if (JLanguageMultilang::isEnabled()) : ?>
<td class="small">
<?php echo JLayoutHelper::render('joomla.content.language', $item); ?>
</td>
<?php endif; ?>
<td class="small">
<?php echo JLayoutHelper::render('joomla.content.language', $item); ?>
</td>
<td>
<?php echo AssociationsHelper::getAssociationHtmlList($this->extensionName, $this->typeName, (int) $item->id, $item->language, !$isCheckout, false); ?>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,9 @@
<th class="nowrap">
<?php echo JHtml::_('searchtools.sort', 'JGLOBAL_TITLE', 'title', $listDirn, $listOrder); ?>
</th>
<?php if (JLanguageMultilang::isEnabled()) : ?>
<th style="width:15%" class="nowrap hidden-sm-down text-center">
<?php echo JHtml::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'language', $listDirn, $listOrder); ?>
</th>
<?php endif; ?>
<th style="width:15%" class="nowrap hidden-sm-down text-center">
<?php echo JHtml::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'language', $listDirn, $listOrder); ?>
</th>
<th style="width:5%" class="nowrap">
<?php echo JHtml::_('searchtools.sort', 'COM_ASSOCIATIONS_HEADING_ASSOCIATION', 'association', $listDirn, $listOrder); ?>
</th>
Expand Down Expand Up @@ -134,11 +132,9 @@
</div>
<?php endif; ?>
</td>
<?php if (JLanguageMultilang::isEnabled()) : ?>
<td class="small">
<?php echo JLayoutHelper::render('joomla.content.language', $item); ?>
</td>
<?php endif; ?>
<td class="small">
<?php echo JLayoutHelper::render('joomla.content.language', $item); ?>
</td>
<td>
<?php if (true || $item->association) : ?>
<?php echo AssociationsHelper::getAssociationHtmlList($this->extensionName, $this->typeName, (int) $item->id, $item->language, false, false); ?>
Expand Down

0 comments on commit 3723eed

Please sign in to comment.