From: Brion Vibber Date: Wed, 11 Nov 2009 18:38:11 +0000 (-0800) Subject: Fix bug 1963: Web UI throws warnings during previously open login session after user... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7f8dbb8e457d1e5534ebb569988d84ee3adaeef7;p=quix0rs-gnu-social.git 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. --- diff --git a/lib/util.php b/lib/util.php index 81160d052c..7aca4af8d6 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; + } } }