Skip to content

Commit

Permalink
Fixed Bug #4473 Undefined variables in error()
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk@187317 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Paul M Jones committed May 30, 2005
1 parent 8ea664c commit 4449731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Text/Wiki.php
Expand Up @@ -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);
}


Expand Down

0 comments on commit 4449731

Please sign in to comment.