From 34eb0dff48eb0b0d5f38f4cfd92ef6d47aefc8b4 Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Wed, 5 Jun 2019 09:07:04 +0800 Subject: [PATCH] Fix a warning for PHP 7.4 Signed-off-by: Jack Cherng --- tcpdf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcpdf.php b/tcpdf.php index a1b4c1c..cc231da 100644 --- a/tcpdf.php +++ b/tcpdf.php @@ -1960,7 +1960,7 @@ class TCPDF { // set default JPEG quality $this->jpeg_quality = 75; // initialize some settings - TCPDF_FONTS::utf8Bidi(array(''), '', false, $this->isunicode, $this->CurrentFont); + TCPDF_FONTS::utf8Bidi(array(), '', false, $this->isunicode, $this->CurrentFont); // set default font $this->SetFont($this->FontFamily, $this->FontStyle, $this->FontSizePt); $this->setHeaderFont(array($this->FontFamily, $this->FontStyle, $this->FontSizePt));