* simply ignore notice if key does not exist on config()

This commit is contained in:
slawkens 2019-04-24 11:23:18 +02:00
parent b0a5220159
commit fc3bd432ef

View File

@ -1064,7 +1064,7 @@ function config($key) {
return $config[$key[0]] = $key[1];
}
return $config[$key];
return @$config[$key];
}
function clearCache()