Standards enforcing

This commit is contained in:
Hypolite Petovan 2016-10-21 23:08:42 -04:00
parent 44d5dec06f
commit 9a59878190
1 changed files with 3 additions and 2 deletions

View File

@ -719,9 +719,10 @@ function logger($msg, $level = 0) {
}
if (count($LOGGER_LEVELS) == 0) {
foreach (get_defined_constants() as $k => $v){
if (substr($k, 0, 7) == "LOGGER_")
foreach (get_defined_constants() as $k => $v) {
if (substr($k, 0, 7) == "LOGGER_") {
$LOGGER_LEVELS[$v] = substr($k, 7, 7);
}
}
}