summaryrefslogtreecommitdiff
path: root/framework/core.php
diff options
context:
space:
mode:
authorxue <>2005-12-11 01:08:27 +0000
committerxue <>2005-12-11 01:08:27 +0000
commitd8d14cd6b09a158c5010356bf14aee76f60a900b (patch)
tree842bb4cebcfa10d7041c643128c5d639984e97bc /framework/core.php
parented7d3b719ee58d224f50017505dc3c938de72987 (diff)
Fixed a syntax error in PradoBase class, which would cause a recursive raising of exceptions.
Diffstat (limited to 'framework/core.php')
-rw-r--r--framework/core.php2
1 files changed, 1 insertions, 1 deletions
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
{