Fix bug 1963: Web UI throws warnings during previously open login session after user account is deleted

common_logged_in() returned bogus results because it checks against null specifically, but common_current_user() was sticking 'false' into $_cur because that's what User::staticGet() returned from a failed lookup. Now we skip over a failed lookup here, so we keep null and all is well.
This commit is contained in:
Brion Vibber 2009-11-11 10:38:11 -08:00
parent f600fa3b1a
commit 7f8dbb8e45
1 changed files with 5 additions and 2 deletions

View File

@ -350,8 +350,11 @@ function common_current_user()
common_ensure_session();
$id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
if ($id) {
$_cur = User::staticGet($id);
return $_cur;
$user = User::staticGet($id);
if ($user) {
$_cur = $user;
return $_cur;
}
}
}