summaryrefslogtreecommitdiff
path: root/lang/pear/files/PEAR.php
diff options
context:
space:
mode:
Diffstat (limited to 'lang/pear/files/PEAR.php')
-rw-r--r--lang/pear/files/PEAR.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/pear/files/PEAR.php b/lang/pear/files/PEAR.php
index 4fb2543cf50..235df50b202 100644
--- a/lang/pear/files/PEAR.php
+++ b/lang/pear/files/PEAR.php
@@ -26,7 +26,7 @@
*/
/*
- * $NetBSD: PEAR.php,v 1.1 2009/10/29 08:29:03 seb Exp $
+ * $NetBSD: PEAR.php,v 1.2 2011/08/20 14:02:29 taca Exp $
*
* This is http://cvs.php.net/viewvc.cgi/pear-core/PEAR.php?view=co&pathrev=PEAR_1_4
*
@@ -569,10 +569,10 @@ class PEAR
$ec = 'PEAR_Error';
}
if ($skipmsg) {
- $a = &new $ec($code, $mode, $options, $userinfo);
+ $a = new $ec($code, $mode, $options, $userinfo);
return $a;
} else {
- $a = &new $ec($message, $code, $mode, $options, $userinfo);
+ $a = new $ec($message, $code, $mode, $options, $userinfo);
return $a;
}
}