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

This commit is contained in:
Andrew Dolgov 2011-02-07 13:38:03 +03:00
parent b899847009
commit 4909f981ce
1 changed files with 2 additions and 0 deletions

View File

@ -78,6 +78,8 @@
$uid = 0; $uid = 0;
} }
if (SINGLE_USER_MODE) $login = "admin";
if ($uid && get_pref($link, "ENABLE_API_ACCESS", $uid)) { if ($uid && get_pref($link, "ENABLE_API_ACCESS", $uid)) {
if (authenticate_user($link, $login, $password)) { // try login with normal password if (authenticate_user($link, $login, $password)) { // try login with normal password
print api_wrap_reply(API_STATUS_OK, $seq, print api_wrap_reply(API_STATUS_OK, $seq,