diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-11 10:38:11 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-11 10:38:11 -0800 |
commit | 7f8dbb8e457d1e5534ebb569988d84ee3adaeef7 (patch) | |
tree | 90053ddd5489c6e2e46f29004f4e159d877c7867 /lib | |
parent | f600fa3b1a3a4c81f6573d05dbcf286e2834a389 (diff) |
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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php index 81160d052..7aca4af8d 100644 --- a/lib/util.php +++ b/lib/util.php @@ -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; + } } } |