Remove censoring of schema and prefix from debug()

As per discussion in #cakephp the other day, `debug()` will automatically censor out a list of keys, including `prefix` and `schema`. These are useful to see in output for debugging prefix routing, and should not automatically be considered sensitive information.
This commit is contained in:
Ashley Pinner 2015-10-15 12:55:32 +01:00
parent a6a699b4b9
commit 83b904bc7b

View file

@ -455,8 +455,6 @@ class Debugger {
* - host
* - database
* - port
* - prefix
* - schema
*
* This is done to protect database credentials, which could be accidentally
* shown in an error message if CakePHP is deployed in development mode.
@ -514,8 +512,6 @@ class Debugger {
* - host
* - database
* - port
* - prefix
* - schema
*
* @param array $var The array to export.
* @param int $depth The current depth, used for recursion tracking.
@ -528,9 +524,7 @@ class Debugger {
'login' => '*****',
'host' => '*****',
'database' => '*****',
'port' => '*****',
'prefix' => '*****',
'schema' => '*****'
'port' => '*****'
);
$replace = array_intersect_key($secrets, $var);
$var = $replace + $var;