mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Removing redundant html escaping from ErrorHandler
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7605 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
5658e26e07
commit
593871d58f
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ class ErrorHandler extends Object {
|
|||
$this->controller->set(array(
|
||||
'code' => '404',
|
||||
'name' => __('Not Found', true),
|
||||
'message' => h($url),
|
||||
'message' => $url,
|
||||
'base' => $this->controller->base
|
||||
));
|
||||
$this->__outputMessage('error404');
|
||||
|
|
Loading…
Add table
Reference in a new issue