This commit is contained in:
2026-05-15 20:23:25 +02:00
parent c980004309
commit bc5cae7e82
74 changed files with 563 additions and 130 deletions

View File

@@ -11,10 +11,15 @@
*/
function AppErrorHandler($errno, $errstr, $errfile, $errline) {
if(!(error_reporting() & $errno)) {
return true;
}
switch ($errno) {
case E_STRICT:
case E_DEPRECATED:
case E_USER_DEPRECATED:
break;
@@ -86,4 +91,4 @@ ini_set('html_errors',false);
ini_set('error_prepend_string','<html><head><META http-equiv="refresh" content="0;URL='.Config::Get('FATAL_ERROR_URL').'"></head></html>');
//ini_set('error_append_string','"></head></html>');
}
?>
?>