Update base.php

This commit is contained in:
Namhyeon Go 2020-02-08 17:34:52 +09:00 committed by GitHub
parent e747bcc2d9
commit 41b454fa0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -296,6 +296,7 @@ if(!check_function_exists("set_error")) {
function set_error($msg, $code="ERROR") {
global $shared_vars;
$shared_vars['errors'][] = $code . ": " . $msg;
write_common_log($msg, "set_error);
}
}