summaryrefslogtreecommitdiffstats
path: root/3rdparty/PEAR/Autoloader.php
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/PEAR/Autoloader.php')
-rw-r--r--3rdparty/PEAR/Autoloader.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/PEAR/Autoloader.php b/3rdparty/PEAR/Autoloader.php
index 0ed707ec842..51620c7085f 100644
--- a/3rdparty/PEAR/Autoloader.php
+++ b/3rdparty/PEAR/Autoloader.php
@@ -144,7 +144,7 @@ class PEAR_Autoloader extends PEAR
$include_file = preg_replace('/[^a-z0-9]/i', '_', $classname);
include_once $include_file;
}
- $obj =& new $classname;
+ $obj = new $classname;
$methods = get_class_methods($classname);
foreach ($methods as $method) {
// don't import priviate methods and constructors