From: Mark Pemberton Date: Wed, 15 Jun 2011 12:47:50 +0000 (-0400) Subject: Fixed issue with storing RSS login in session X-Git-Tag: v0.98.0~23 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=f9dbdc6645ed3631d9ba77a29212934073bd76b4;p=semanticscuttle.git Fixed issue with storing RSS login in session --- diff --git a/src/SemanticScuttle/Service/User.php b/src/SemanticScuttle/Service/User.php index e6527ea..b5b053f 100644 --- a/src/SemanticScuttle/Service/User.php +++ b/src/SemanticScuttle/Service/User.php @@ -571,7 +571,7 @@ class SemanticScuttle_Service_User extends SemanticScuttle_DbService $this->db->sql_freeresult($dbresult); if ($row) { - $this->setCurrentUserId($row[$this->getFieldName('primary')], true); + $this->setCurrentUserId($row[$this->getFieldName('primary')], false); return true; } else { return false;