Fix footer rendering

This commit is contained in:
Dennis Eichhorn 2017-07-25 19:09:46 +02:00
parent 52c1aef50b
commit 063c8ec384
3 changed files with 3 additions and 3 deletions

View File

@ -275,7 +275,7 @@ echo $this->getData('nav')->render(); ?>
<td><?= $this->getHtml('Date') ?>
<tfoot>
<tr>
<td colspan="6"><?= htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
<td colspan="6"><?= $footerView->render(); ?>
<tbody>
<tr>
<td><?= htmlspecialchars($this->request->getOrigin(), ENT_COMPAT, 'utf-8'); ?>

View File

@ -77,7 +77,7 @@ echo $this->getData('nav')->render(); ?>
<td><?= $this->getHtml('Country') ?>
<tfoot>
<tr>
<td colspan="8"><?= htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
<td colspan="8"><?= $footerView->render(); ?>
<tbody>
<?php $count = 0; foreach($clients as $key => $value) : $count++;
$url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/sales/client/profile?{?}&id=' . $value->getId()); ?>

View File

@ -278,7 +278,7 @@ echo $this->getData('nav')->render();
<td><?= $this->getHtml('Date') ?>
<tfoot>
<tr>
<td colspan="6"><?= htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
<td colspan="6"><?= $footerView->render(); ?>
<tbody>
<tr>
<td><?= htmlspecialchars($this->request->getOrigin(), ENT_COMPAT, 'utf-8'); ?>