From 219264a9847d6b93537781a566c7cab38b3fe359 Mon Sep 17 00:00:00 2001 From: abraar Date: Wed, 22 Dec 2010 14:24:10 +0000 Subject: [PATCH] Removed Deprecated funtion --- gulliver/thirdparty/pear/Log.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulliver/thirdparty/pear/Log.php b/gulliver/thirdparty/pear/Log.php index 51891a0ec..a4891c198 100644 --- a/gulliver/thirdparty/pear/Log.php +++ b/gulliver/thirdparty/pear/Log.php @@ -144,7 +144,7 @@ class Log /* If the class exists, return a new instance of it. */ if (class_exists($class, false)) { - $obj = &new $class($name, $ident, $conf, $level); + $obj = new $class($name, $ident, $conf, $level); return $obj; }