From: Greg Beaver Date: Sat, 6 Dec 2003 02:00:33 +0000 (+0000) Subject: simple fix for core bug #362 - raiseError() doesn't return a reference, why should... X-Git-Tag: php-5.0.0b3RC1~267 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=49a2893adb57e2bb08eb6fbd1b47348d81d97577;p=php simple fix for core bug #362 - raiseError() doesn't return a reference, why should throwError()? --- diff --git a/pear/PEAR.php b/pear/PEAR.php index a10d90373b..a816a92a8c 100644 --- a/pear/PEAR.php +++ b/pear/PEAR.php @@ -538,7 +538,7 @@ class PEAR * @param string $message * */ - function &throwError($message = null, + function throwError($message = null, $code = null, $userinfo = null) {