Demoseite Update

This commit is contained in:
Andreas Österreicher
2010-04-26 14:24:05 +00:00
parent 83412c9457
commit 2d21d9826b
15 changed files with 342 additions and 307 deletions
+2 -2
View File
@@ -554,10 +554,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;
}
}