PMCORE-3851 'Footer section' appears in the top of Document when the margin is equal to 0 (zero)

This commit is contained in:
Roly Gutierrez
2022-05-31 13:09:47 -04:00
parent 3972e1d0af
commit afe865c5a4

View File

@@ -170,7 +170,8 @@ class TCPDFHeaderFooter extends TCPDF
$margins = $this->originalMargins;
//page adjust
$this->SetY(-1 * ($margins['bottom']));
$bottom = $margins['bottom'] <= 0 ? 1 : $margins['bottom'];
$this->SetY(-1 * $bottom);
$currentY = $this->GetY();
$this->buildFooterLogo($margins, $currentY, $struct);