From d8d14cd6b09a158c5010356bf14aee76f60a900b Mon Sep 17 00:00:00 2001 From: xue <> Date: Sun, 11 Dec 2005 01:08:27 +0000 Subject: Fixed a syntax error in PradoBase class, which would cause a recursive raising of exceptions. --- framework/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework/core.php') diff --git a/framework/core.php b/framework/core.php index b5aa701c..405e5574 100644 --- a/framework/core.php +++ b/framework/core.php @@ -425,7 +425,7 @@ class PradoBase { if(self::$_application!==null && ($errorHandler=self::$_application->getErrorHandler())!==null) { - $errorHandler->handleError($exception); + $errorHandler->handleError(null,$exception); } else { -- cgit v1.2.3