From 444973120d52356b671c3fa623711b258fd2efbd Mon Sep 17 00:00:00 2001 From: Paul M Jones Date: Mon, 30 May 2005 13:22:57 +0000 Subject: [PATCH] Fixed Bug #4473 Undefined variables in error() git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk@187317 c90b9560-bf6c-de11-be94-00142212c4b1 --- Text/Wiki.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Text/Wiki.php b/Text/Wiki.php index ee7bdaeb410..6464c4effaf 100644 --- a/Text/Wiki.php +++ b/Text/Wiki.php @@ -1300,7 +1300,7 @@ function &error($message) if (! class_exists('PEAR_Error')) { include_once 'PEAR.php'; } - return PEAR::throwError($message, $code, $info); + return PEAR::throwError($message); }