summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Common/BlogErrorHandler.php
diff options
context:
space:
mode:
authorxue <>2006-11-06 15:22:08 +0000
committerxue <>2006-11-06 15:22:08 +0000
commit63b0c46594a8789b0644be47ec61cf2372cf5ff0 (patch)
treeb9c039726df4e95d001ff426b523b832d3ca92de /demos/blog/protected/Common/BlogErrorHandler.php
parentbce854019ec98edc77b541af3d971a1d95da13af (diff)
Fixed URL redirection broken issue.
Diffstat (limited to 'demos/blog/protected/Common/BlogErrorHandler.php')
-rw-r--r--demos/blog/protected/Common/BlogErrorHandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/blog/protected/Common/BlogErrorHandler.php b/demos/blog/protected/Common/BlogErrorHandler.php
index 012f2e4c..06042be1 100644
--- a/demos/blog/protected/Common/BlogErrorHandler.php
+++ b/demos/blog/protected/Common/BlogErrorHandler.php
@@ -36,7 +36,7 @@ class BlogErrorHandler extends TErrorHandler
$message=$exception->getMessage();
Prado::log($message,TLogger::ERROR,'BlogApplication');
$message=urldecode($this->getApplication()->getSecurityManager()->hashData($message));
- $this->Response->redirect($this->Service->constructUrl('ErrorReport',array('msg'=>$message)));
+ $this->Response->redirect($this->Service->constructUrl('ErrorReport',array('msg'=>$message),false));
}
else
parent::handleExternalError($statusCode,$exception);