From: Alexander Ebert Date: Mon, 4 Feb 2013 18:45:49 +0000 (+0100) Subject: Fixed variable X-Git-Tag: 2.0.0_Beta_1~511 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=23253208c3a97173f0d6c71a07996dea5e48b303;p=GitHub%2FWoltLab%2FWCF.git Fixed variable --- diff --git a/wcfsetup/install/files/lib/system/session/SessionHandler.class.php b/wcfsetup/install/files/lib/system/session/SessionHandler.class.php index dc8f22de46..8be2ac7711 100644 --- a/wcfsetup/install/files/lib/system/session/SessionHandler.class.php +++ b/wcfsetup/install/files/lib/system/session/SessionHandler.class.php @@ -407,7 +407,7 @@ class SessionHandler extends SingletonFactory { // get group data from cache $this->groupData = UserGroupPermissionCacheBuilder::getInstance()->getData($groupIDs); - if (isset($this->groupData['groupIDs']) && $this->groupData['groupIDs'] != $groups) { + if (isset($this->groupData['groupIDs']) && $this->groupData['groupIDs'] != $groupIDs) { $this->groupData = array(); } }