From 8b1bf1e38cd39db084f5c14ed2b625c22897de70 Mon Sep 17 00:00:00 2001 From: Dave Barry Date: Mon, 14 Jul 2008 01:00:37 -0400 Subject: [PATCH] Fixup rememberme cookie handling in the POST only case darcs-hash:20080714050037-08d49-b00c6370c4eed918eee94f828e2d6098b922ba69.gz --- lib/util.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 33a2cac28a..1b672561fc 100644 --- a/lib/util.php +++ b/lib/util.php @@ -548,7 +548,7 @@ function common_forgetme() { # who is the current user? function common_current_user() { - if ($_REQUEST[session_name()]) { + if ($_REQUEST[session_name()] || $_SESSION && $_SESSION['userid']) { common_ensure_session(); $id = $_SESSION['userid']; if ($id) { @@ -559,6 +559,11 @@ function common_current_user() { } # that didn't work; try to remember $user = common_remembered_user(); + common_debug("Got User " . $user->nickname); + if ($user) { + common_debug("Faking session on remembered user"); + $_SESSION['userid'] = $user->id; + } return $user; }