31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-26 08:22:34 +00:00

Colspan fix on Hathor too

This commit is contained in:
Michael Babker 2016-04-15 10:21:26 -05:00
parent d5063d2ab9
commit 03dad89ce8

View File

@ -20,6 +20,7 @@ $listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn = $this->escape($this->state->get('list.direction'));
$filterApplied = $this->escape($this->state->get('filter.applied'));
$filterRtc = $this->escape($this->state->get('filter.rtc'));
$colSpan = $this->trackerAlias !== false ? 7 : 6;
\JFactory::getDocument()->addStyleDeclaration(
'
@ -95,7 +96,7 @@ echo \JHtml::_(
</thead>
<tfoot>
<tr>
<td colspan="6">
<td colspan="<?php echo $colSpan; ?>">
</td>
</tr>
</tfoot>