From 6d235bcf86c979756eed351cb1b28130662e8d5b Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 21 Dec 2022 22:27:27 +1100 Subject: [PATCH] remove iconv() from Pdf numbering --- app/Utils/Traits/Pdf/PDF.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Utils/Traits/Pdf/PDF.php b/app/Utils/Traits/Pdf/PDF.php index f81407b9f9..a3f0727f71 100644 --- a/app/Utils/Traits/Pdf/PDF.php +++ b/app/Utils/Traits/Pdf/PDF.php @@ -25,7 +25,7 @@ class PDF extends FPDI $this->SetTextColor(135, 135, 135); $trans = ctrans('texts.pdf_page_info', ['current' => $this->PageNo(), 'total' => '{nb}']); - $trans = iconv('UTF-8', 'ISO-8859-7', $trans); + // $trans = iconv('UTF-8', 'ISO-8859-7', $trans); $this->Cell(0, 5, $trans, 0, 0, $this->text_alignment); }