Skip to content
Snippets Groups Projects
Commit fbd40f5d authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

api: default to admin username when logging in in single user mode (fixed)

parent 4909f981
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,8 @@
$password = db_escape_string($_REQUEST["password"]);
$password_base64 = db_escape_string(base64_decode($_REQUEST["password"]));
if (SINGLE_USER_MODE) $login = "admin";
$result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
if (db_num_rows($result) != 0) {
......@@ -78,8 +80,6 @@
$uid = 0;
}
if (SINGLE_USER_MODE) $login = "admin";
if ($uid && get_pref($link, "ENABLE_API_ACCESS", $uid)) {
if (authenticate_user($link, $login, $password)) { // try login with normal password
print api_wrap_reply(API_STATUS_OK, $seq,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment