Backport 1.5 load account

This commit is contained in:
2025-09-12 07:50:52 -07:00
parent 2adacb4101
commit 6445cc45d3
2 changed files with 32 additions and 0 deletions

View File

@@ -1,6 +1,12 @@
<?php
require __DIR__ . '/../incl/util.php';
setPlainHeader();
if (isAllowedDatabaseVersion(getClientVersion())) {
if (getClientVersion() == "1.5.0" || getClientVersion() == "1.5.1" || getClientVersion() == "1.5.2") {
require __DIR__ . '/backported/1.5/loadAccount.php';
exit;
}
}
checkClientDatabaseVersion();
$post = getPostData();