Fix display warning/errors (#496)

* prevent filling debug param when debug is off

* fix php warning: "$item" must be passed by reference
This commit is contained in:
sshscp15 2022-09-15 17:03:32 +00:00 committed by -
parent 2216a0155c
commit 02edb9a896

View File

@ -105,7 +105,7 @@ function error($message, $priority = true, $debug_stuff = false) {
}
$pw = $config['db']['password'];
$debug_callback = function(&$item) use (&$debug_callback, $pw) {
$debug_callback = function($item) use (&$debug_callback, $pw) {
if (is_array($item)) {
$item = array_filter($item, $debug_callback);
}