From dfe86318de955a2c9a6f88e043d6747b7492bfe8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Moussa=20NOMBR=C3=89?= Date: Thu, 28 Jun 2012 10:52:19 -0400 Subject: [PATCH 1/1] =?utf8?q?quelques=20un=20se=20sont=20=C3=A9chapp=C3=A9s?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- lodel-0.9/scripts/Cache/Lite.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodel-0.9/scripts/Cache/Lite.php b/lodel-0.9/scripts/Cache/Lite.php index 2199750..786e195 100644 --- a/lodel-0.9/scripts/Cache/Lite.php +++ b/lodel-0.9/scripts/Cache/Lite.php @@ -725,7 +725,7 @@ class Cache_Lite } else { $data = ''; } - set_magic_quotes_runtime($mqr); + ini_set ("magic_quotes_runtime", $mqr); if ($this->_fileLocking) @flock($fp, LOCK_UN); @fclose($fp); if ($this->_readControl) { @@ -772,7 +772,7 @@ class Cache_Lite $mqr = get_magic_quotes_runtime(); ini_set ("magic_quotes_runtime", 0); @fwrite($fp, $data); - set_magic_quotes_runtime($mqr); + ini_set ("magic_quotes_runtime", $mqr); if ($this->_fileLocking) @flock($fp, LOCK_UN); @fclose($fp); return true; -- 1.7.10.4