Fix: different footer for first page

This commit is contained in:
Fabio Bas 2017-08-02 10:52:42 +02:00
parent cf76b1f217
commit c448046b52
1 changed files with 5 additions and 0 deletions

View File

@ -181,6 +181,11 @@ class Section extends AbstractContainer
return true;
}
}
foreach ($this->footers as $footer) {
if ($footer->getType() == Header::FIRST) {
return true;
}
}
return false;
}