From 8481fff447200cef739ee4db57fe776de51b8890 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Moussa=20NOMBR=C3=89?= Date: Thu, 28 Jun 2012 11:07:15 -0400 Subject: [PATCH] Encore d'autres --- lodel-0.9/scripts/PEAR/Log.php | 2 +- lodel-0.9/scripts/PEAR/Mail/mimeDecode.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lodel-0.9/scripts/PEAR/Log.php b/lodel-0.9/scripts/PEAR/Log.php index 1460376..7f2494d 100644 --- a/lodel-0.9/scripts/PEAR/Log.php +++ b/lodel-0.9/scripts/PEAR/Log.php @@ -144,7 +144,7 @@ class Log /* If the class exists, return a new instance of it. */ if (class_exists($class)) { - $obj = &new $class($name, $ident, $conf, $level); + $obj = new $class($name, $ident, $conf, $level); return $obj; } diff --git a/lodel-0.9/scripts/PEAR/Mail/mimeDecode.php b/lodel-0.9/scripts/PEAR/Mail/mimeDecode.php index d279cb0..de11f4e 100644 --- a/lodel-0.9/scripts/PEAR/Mail/mimeDecode.php +++ b/lodel-0.9/scripts/PEAR/Mail/mimeDecode.php @@ -291,7 +291,7 @@ class Mail_mimeDecode extends PEAR break; case 'message/rfc822': - $obj = &new Mail_mimeDecode($body); + $obj = new Mail_mimeDecode($body); $return->parts[] = $obj->decode(array('include_bodies' => $this->_include_bodies)); unset($obj); break; -- 1.7.10.4