diff --git a/database/backported/12beta2-loginAccount.php b/database/backported/1.2-beta2/loginAccount.php similarity index 100% rename from database/backported/12beta2-loginAccount.php rename to database/backported/1.2-beta2/loginAccount.php diff --git a/database/backported/12beta2-registerAccount.php b/database/backported/1.2-beta2/registerAccount.php similarity index 100% rename from database/backported/12beta2-registerAccount.php rename to database/backported/1.2-beta2/registerAccount.php diff --git a/database/backported/12beta2-syncAccount.php b/database/backported/1.2-beta2/syncAccount.php similarity index 100% rename from database/backported/12beta2-syncAccount.php rename to database/backported/1.2-beta2/syncAccount.php diff --git a/database/loginAccount.php b/database/loginAccount.php index ec88902..948f0f7 100644 --- a/database/loginAccount.php +++ b/database/loginAccount.php @@ -2,7 +2,7 @@ require __DIR__ . '/../incl/util.php'; setPlainHeader(); if (getClientVersion() == "1.2-beta2") { - require __DIR__ . '/backported/12beta2-loginAccount.php'; + require __DIR__ . '/backported/1.2-beta2/loginAccount.php'; exit; } checkClientDatabaseVersion(); diff --git a/database/registerAccount.php b/database/registerAccount.php index 24b3272..38d348e 100644 --- a/database/registerAccount.php +++ b/database/registerAccount.php @@ -2,7 +2,7 @@ require __DIR__ . '/../incl/util.php'; setPlainHeader(); if (getClientVersion() == "1.2-beta2") { - require __DIR__ . '/backported/12beta2-registerAccount.php'; + require __DIR__ . '/backported/1.2-beta2/registerAccount.php'; exit; } checkClientDatabaseVersion(); diff --git a/database/saveAccount.php b/database/saveAccount.php index 8813f37..de947fd 100644 --- a/database/saveAccount.php +++ b/database/saveAccount.php @@ -2,7 +2,7 @@ require __DIR__ . '/../incl/util.php'; setPlainHeader(); if (getClientVersion() == "1.2-beta2") { - require __DIR__ . '/backported/12beta2-syncAccount.php'; + require __DIR__ . '/backported/1.2-beta2/syncAccount.php'; exit; } checkClientDatabaseVersion();