diff options
author | xue <> | 2005-12-11 01:08:27 +0000 |
---|---|---|
committer | xue <> | 2005-12-11 01:08:27 +0000 |
commit | d8d14cd6b09a158c5010356bf14aee76f60a900b (patch) | |
tree | 842bb4cebcfa10d7041c643128c5d639984e97bc /framework/core.php | |
parent | ed7d3b719ee58d224f50017505dc3c938de72987 (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.php | 2 |
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
{
|