Skip to content

Commit

Permalink
Fixing footer count
Browse files Browse the repository at this point in the history
  • Loading branch information
italolelis committed Sep 1, 2014
1 parent d2d09cf commit 889f776
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Umbrella/SimpleReport/Renderer/HtmlRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ protected function renderTableFooter()
{
$this->doWriteTableFooterStart();
$this->doWriteTableFooterRowStart();
for ($this->datasource->rewind(); $this->datasource->valid(); $this->datasource->next()) {
$countColumn = $this->template->getFields();

for ($i = 0; $i < count($countColumn); $i++) {
$this->doWriteTableFooterDataStart();
$this->write('&nbsp;');
$this->doWriteTableFooterDataEnd();
Expand Down

0 comments on commit 889f776

Please sign in to comment.