31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-07-01 02:23:30 +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')); $listDirn = $this->escape($this->state->get('list.direction'));
$filterApplied = $this->escape($this->state->get('filter.applied')); $filterApplied = $this->escape($this->state->get('filter.applied'));
$filterRtc = $this->escape($this->state->get('filter.rtc')); $filterRtc = $this->escape($this->state->get('filter.rtc'));
$colSpan = $this->trackerAlias !== false ? 7 : 6;
\JFactory::getDocument()->addStyleDeclaration( \JFactory::getDocument()->addStyleDeclaration(
' '
@ -95,7 +96,7 @@ echo \JHtml::_(
</thead> </thead>
<tfoot> <tfoot>
<tr> <tr>
<td colspan="6"> <td colspan="<?php echo $colSpan; ?>">
</td> </td>
</tr> </tr>
</tfoot> </tfoot>