From: Evan Prodromou Date: Tue, 24 Jun 2008 04:00:58 +0000 (-0400) Subject: think && was binding too closely in remembered_user X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cdeddb6ffc08200829cf21ad4838305022340641;p=quix0rs-gnu-social.git think && was binding too closely in remembered_user darcs-hash:20080624040058-34904-0f16041ec545e1a42384178f6cd52edcae967d2a.gz --- diff --git a/lib/util.php b/lib/util.php index 0502ce7976..96e7e08cf7 100644 --- a/lib/util.php +++ b/lib/util.php @@ -476,7 +476,7 @@ function common_remembered_user() { list($id, $code) = explode(':', $packed); if ($id && $code) { $rm = Remember_me::staticGet($code); - if ($rm && $rm->user_id == $id) { + if ($rm && ($rm->user_id == $id)) { $user = User::staticGet($rm->id); if ($user) { # successful!