release 1.3.22

This commit is contained in:
Newcomer1989
2023-02-01 20:44:58 +01:00
parent b96e32b713
commit f7d7aedc5a
100 changed files with 5710 additions and 1435 deletions

View File

@@ -1,28 +1,27 @@
<?PHP
require_once('../other/_functions.php');
require_once('../other/config.php');
require_once(dirname(__DIR__).DIRECTORY_SEPARATOR.'other/_functions.php');
require_once(dirname(__DIR__).DIRECTORY_SEPARATOR.'other/config.php');
start_session($cfg);
$lang = set_language(get_language($cfg));
$lang = set_language(get_language());
error_reporting(E_ALL);
ini_set("log_errors", 1);
set_error_handler("php_error_handling");
ini_set("error_log", $cfg['logs_path'].'ranksystem.log');
ini_set("error_log", $GLOBALS['logfile']);
if(isset($_POST['refresh'])) {
rem_session_ts3();
}
try {
require_once('../other/phpcommand.php');
require_once('../other/load_addons_config.php');
require_once(dirname(__DIR__).DIRECTORY_SEPARATOR.'other/load_addons_config.php');
$addons_config = load_addons_config($mysqlcon,$lang,$cfg,$dbname);
if(!isset($_SESSION[$rspathhex.'tsuid'])) {
set_session_ts3($mysqlcon,$cfg,$lang,$dbname);
}
require_once('_nav.php');
require_once(__DIR__.DIRECTORY_SEPARATOR.'_nav.php');
} catch(Throwable $ex) { }
?>