mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
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
@ -140,7 +140,7 @@ trait PdfMakerUtilities
|
|||||||
// .. in case string doesn't contain any HTML, we'll just return
|
// .. in case string doesn't contain any HTML, we'll just return
|
||||||
// raw $content.
|
// 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);
|
$element->appendChild($_child);
|
||||||
|
Loading…
Reference in New Issue
Block a user