diff options
author | xue <> | 2005-12-23 03:31:07 +0000 |
---|---|---|
committer | xue <> | 2005-12-23 03:31:07 +0000 |
commit | 153581e1081ba4225eb93221aced493709cb606c (patch) | |
tree | 7b2a165708d6fb8e587749e3e0fe1f813c2011aa /framework/Exceptions/TErrorHandler.php | |
parent | 5c0517b7748dcfae1264d28df7ea111a67bd3aa4 (diff) |
Implemented new page storage method.
Diffstat (limited to 'framework/Exceptions/TErrorHandler.php')
-rw-r--r-- | framework/Exceptions/TErrorHandler.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Exceptions/TErrorHandler.php b/framework/Exceptions/TErrorHandler.php index 87d5d342..ca42c8ff 100644 --- a/framework/Exceptions/TErrorHandler.php +++ b/framework/Exceptions/TErrorHandler.php @@ -138,7 +138,7 @@ class TErrorHandler extends TModule header('Content-Type: text/html; charset=UTF-8');
if($param instanceof THttpException)
$this->handleExternalError($param->getStatusCode(),$param);
- else if(Prado::getApplication()->getMode()==='Debug')
+ else if(Prado::getApplication()->getMode()===TApplication::STATE_DEBUG)
$this->displayException($param);
else
$this->handleExternalError(500,$param);
@@ -192,7 +192,7 @@ class TErrorHandler extends TModule */
protected function handleRecursiveError($exception)
{
- if(Prado::getApplication()->getMode()==='Debug')
+ if(Prado::getApplication()->getMode()===TApplication::STATE_DEBUG)
{
echo "<html><head><title>Recursive Error</title></head>\n";
echo "<body><h1>Recursive Error</h1>\n";
|