From 65be91aa47b7f8fe7ec500786a4b0637bb33dd92 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 21 Sep 2023 23:32:34 +1000 Subject: [PATCH] Fixes for encoded entities --- app/Services/PdfMaker/PdfMaker.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/PdfMaker/PdfMaker.php b/app/Services/PdfMaker/PdfMaker.php index cf77c6acb532..701222bf359e 100644 --- a/app/Services/PdfMaker/PdfMaker.php +++ b/app/Services/PdfMaker/PdfMaker.php @@ -114,14 +114,14 @@ class PdfMaker /** * Final method to get compiled HTML. * - * @param bool $final @deprecated // is it? i still see it being called elsewhere + * @param bool $final * @return mixed */ public function getCompiledHTML($final = false) { $html = $this->document->saveHTML(); - nlog($html); + // nlog($html); return str_replace('%24', '$', $html); } }