bugfix gruppensumme PDF Briefpapier::Cell_typed(): Argument #3 ($txt) must be of type string, null given

This commit is contained in:
OpenXE 2023-05-05 09:58:15 +02:00
parent 2533e4ca4f
commit 4ffeafa5ac

View File

@ -4030,7 +4030,11 @@ class Briefpapier extends SuperFPDF {
}
$this->SetX($x+$abstand_links);
$this->Cell_typed($descWidth,4,$this->WriteHTML($html));
$text = $this->WriteHTML($html);
$text = empty($text)?"":$text;
$this->Cell_typed($descWidth,4,);
$this->SetX($x+$abstand_links+$descWidth);
//$this->SetX($x);