fix empty string where only username is available

This commit is contained in:
2019-01-23 15:44:21 +01:00
parent 16fa0db8ca
commit 3250792c9d
3 changed files with 14 additions and 8 deletions

View File

@@ -20,7 +20,7 @@ if (!isset($_SERVER['HTTPS'])) {
}
require_once(__DIR__ . "/../language.php");
if (!file_exists("../config.php")) {
if (!file_exists(__DIR__ . "/../config.php")) {
print($language["NO_CONFIGURATION"]);
exit();
}