api: properly handle incorrect UID passed to login
This commit is contained in:
parent
423e6e55d7
commit
a7a9968684
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@
|
|||
$uid = 0;
|
||||
}
|
||||
|
||||
if (get_pref($link, "ENABLE_API_ACCESS", $uid)) {
|
||||
if ($uid && get_pref($link, "ENABLE_API_ACCESS", $uid)) {
|
||||
if (authenticate_user($link, $login, $password)) {
|
||||
print json_encode(array("session_id" => session_id()));
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue