From: Evan Prodromou Date: Tue, 24 Jun 2008 03:28:18 +0000 (-0400) Subject: set user takes a nickname, not a user object X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fcd473a1a36fcc9a2940d6ce217fed4c744b4dae;p=quix0rs-gnu-social.git set user takes a nickname, not a user object darcs-hash:20080624032818-34904-bf8c5594c42c797820e080250c955645a5a84aa1.gz --- diff --git a/lib/util.php b/lib/util.php index 5f184cce88..791a40690d 100644 --- a/lib/util.php +++ b/lib/util.php @@ -451,7 +451,6 @@ define('REMEMBERME', 'rememberme'); define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60); function common_rememberme() { - common_debug('rememberme called', __FILE__); $user = common_current_user(); if (!$user) { return false; @@ -486,7 +485,7 @@ function common_remembered_user() { common_log_db_error($rm, 'DELETE', __FILE__); $user = NULL; } else { - common_set_user($user); + common_set_user($user->nickname); common_real_login(false); # We issue a new cookie, so they can log in # automatically again after this session