Fixes for encoded entities

This commit is contained in:
David Bomba 2023-09-21 23:32:34 +10:00
parent 76446c9402
commit 65be91aa47

View File

@ -114,14 +114,14 @@ class PdfMaker
/** /**
* Final method to get compiled HTML. * Final method to get compiled HTML.
* *
* @param bool $final @deprecated // is it? i still see it being called elsewhere * @param bool $final
* @return mixed * @return mixed
*/ */
public function getCompiledHTML($final = false) public function getCompiledHTML($final = false)
{ {
$html = $this->document->saveHTML(); $html = $this->document->saveHTML();
nlog($html); // nlog($html);
return str_replace('%24', '$', $html); return str_replace('%24', '$', $html);
} }
} }