From 74fb49098eb52b8f42110713caa3892572305cf3 Mon Sep 17 00:00:00 2001 From: mensonge Date: Fri, 18 Apr 2008 09:57:32 +0000 Subject: Bug fix: correct problem with mutual logins for several installations on the same host git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@114 b3834d28-1941-0410-a4f8-b48e95affb8f --- services/userservice.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'services/userservice.php') diff --git a/services/userservice.php b/services/userservice.php index c691b36..9e3adca 100644 --- a/services/userservice.php +++ b/services/userservice.php @@ -23,8 +23,8 @@ class UserService { function UserService(& $db) { $this->db =& $db; $this->tablename = $GLOBALS['tableprefix'] .'users'; - $this->sessionkey = $GLOBALS['cookieprefix'] .'-currentuserid'; - $this->cookiekey = $GLOBALS['cookieprefix'] .'-login'; + $this->sessionkey = $GLOBALS['cookieprefix'].INSTALLATION_ID.'-currentuserid'; + $this->cookiekey = $GLOBALS['cookieprefix'].INSTALLATION_ID.'-login'; $this->profileurl = createURL('profile', '%2$s'); } @@ -145,8 +145,11 @@ class UserService { function getCurrentUserId() { if (isset($_SESSION[$this->getSessionKey()])) { +//echo "session";die($_SESSION[$this->getSessionKey()]); return $_SESSION[$this->getSessionKey()]; } else if (isset($_COOKIE[$this->getCookieKey()])) { +//echo "cookie";die(); + $cook = split(':', $_COOKIE[$this->getCookieKey()]); //cookie looks like this: 'id:md5(username+password)' $query = 'SELECT * FROM '. $this->getTableName() . -- cgit v1.2.3-54-g00ecf