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

@@ -1,4 +1,4 @@
<?
<?php
include_once('class/Exception.class.php');
include_once('class/Config.class.php');
@@ -59,9 +59,7 @@ class Core {
public static function SetAppSafeMode() {
MFLog::Error('Switching into the SafeMod.');
if (Config::Get('ERROR_REDIRECT') == true) {
self::$appSafeMode = true;
}
self::$appSafeMode = true;
}
public static function GetAppSafeMode() {
@@ -322,4 +320,4 @@ function StrLeft($s1, $s2) {
return substr($s1, 0, strpos($s1, $s2));
}
?>
?>