Merge pull request #4308 from beganovich/v5-fix-ampersand-breaking-pdfmaker
(v5) Support for special chars on invoices
This commit is contained in:
commit
63e05b09d7
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ trait PdfMakerUtilities
|
|||
// .. in case string doesn't contain any HTML, we'll just return
|
||||
// raw $content.
|
||||
|
||||
$_child = $this->document->createElement($child['element'], isset($child['content']) ? $child['content'] : '');
|
||||
$_child = $this->document->createElement($child['element'], isset($child['content']) ? htmlspecialchars($child['content']) : '');
|
||||
}
|
||||
|
||||
$element->appendChild($_child);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue