release 1.3.23

This commit is contained in:
Newcomer1989
2023-10-19 00:44:22 +02:00
parent 7633da22e0
commit 25d375a433
27 changed files with 761 additions and 258 deletions

View File

@@ -1,5 +1,5 @@
<?PHP
$rsversion = '1.3.22';
$rsversion = '1.3.23';
require_once('other/_functions.php');
require_once('other/config.php');
@@ -479,6 +479,16 @@ last seen {$CLIENT_LAST_SEEN_10|date_format:"%d.%m.%Y %H:%M:%S"}{/if}[/SIZE]
$count++;
}
if($mysqlcon->exec("CREATE TABLE IF NOT EXISTS `$dbname`.`admin_mrgclient` (
`uuid_source` char(28) CHARACTER SET utf8 COLLATE utf8_unicode_ci,
`uuid_target` char(28) CHARACTER SET utf8 COLLATE utf8_unicode_ci,
`timestamp` int(10) UNSIGNED NOT NULL default '0',
PRIMARY KEY (`uuid_source`)
);") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++;
}
if($count == 1) {
$err_msg = sprintf($lang['instdbsuc'], $dbname); $err_lvl = NULL;
$install_webuser = 1;