From 6fc9602bba80b74a609cef60e418eb7e4159a8cd Mon Sep 17 00:00:00 2001 From: Grove Pyree Date: Sat, 28 Dec 2019 00:03:06 +0300 Subject: [PATCH] Upgrade Fpdf to v1.82 --- src/Fpdf/Fpdf.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/Fpdf/Fpdf.php b/src/Fpdf/Fpdf.php index e99c282..125553d 100755 --- a/src/Fpdf/Fpdf.php +++ b/src/Fpdf/Fpdf.php @@ -2,12 +2,12 @@ /******************************************************************************* * FPDF * * * -* Version: 1.81 * -* Date: 2015-12-20 * +* Version: 1.82 * +* Date: 2019-12-07 * * Author: Olivier PLATHEY * *******************************************************************************/ -define('FPDF_VERSION','1.81'); +define('FPDF_VERSION','1.82'); class Fpdf { @@ -1045,9 +1045,6 @@ protected function _dochecks() // Check mbstring overloading if(ini_get('mbstring.func_overload') & 2) $this->Error('mbstring overloading must be disabled'); - // Ensure runtime magic quotes are disabled - if(get_magic_quotes_runtime()) - @set_magic_quotes_runtime(0); } protected function _checkoutput()