From 49a2893adb57e2bb08eb6fbd1b47348d81d97577 Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Sat, 6 Dec 2003 02:00:33 +0000 Subject: [PATCH] simple fix for core bug #362 - raiseError() doesn't return a reference, why should throwError()? --- pear/PEAR.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.50.1