mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-04-03 11:50:22 +02:00
bugfix gruppensumme PDF Briefpapier::Cell_typed(): Argument #3 ($txt) must be of type string, null given
This commit is contained in:
parent
2533e4ca4f
commit
4ffeafa5ac
@ -4030,7 +4030,11 @@ class Briefpapier extends SuperFPDF {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$this->SetX($x+$abstand_links);
|
$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+$abstand_links+$descWidth);
|
||||||
//$this->SetX($x);
|
//$this->SetX($x);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user