Fix footer rendering

This commit is contained in:
Dennis Eichhorn 2017-07-25 19:09:46 +02:00
parent 8c75e06ab8
commit eae3d2cb8f
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ echo $this->getData('nav')->render(); ?>
<td><?= $this->getHtml('Budget') ?>
<tfoot>
<tr>
<td colspan="9"><?= htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
<td colspan="9"><?= $footerView->render(); ?>
<tbody>
<?php $count = 0; foreach([] as $key => $value) : $count++; ?>
<?php endforeach; ?>

View File

@ -36,7 +36,7 @@ echo $this->getData('nav')->render(); ?>
<td><?= $this->getHtml('Budget') ?>
<tfoot>
<tr>
<td colspan="7"><?= htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
<td colspan="7"><?= $footerView->render(); ?>
<tbody>
<?php $count = 0; foreach([] as $key => $value) : $count++; ?>
<?php endforeach; ?>