mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix double encoding in debug().
This commit is contained in:
parent
0cf389e3ce
commit
52010a3e9d
1 changed files with 1 additions and 1 deletions
|
@ -464,7 +464,7 @@ class Debugger {
|
|||
if (trim($var) == '') {
|
||||
return "''";
|
||||
}
|
||||
return "'" . h($var) . "'";
|
||||
return "'" . $var . "'";
|
||||
break;
|
||||
case 'array':
|
||||
return self::_array($var, $depth - 1, $indent + 1);
|
||||
|
|
Loading…
Reference in a new issue