mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 22:22:32 +01:00
remove iconv() from Pdf numbering
This commit is contained in:
parent
02899b931e
commit
6d235bcf86
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user