Index: trunk/core/units/general/inp_ses_storage.php =================================================================== diff -u -N -r2223 -r2299 --- trunk/core/units/general/inp_ses_storage.php (.../inp_ses_storage.php) (revision 2223) +++ trunk/core/units/general/inp_ses_storage.php (.../inp_ses_storage.php) (revision 2299) @@ -28,8 +28,10 @@ $this->SetCookieDomain( SERVER_NAME ); parent::Init($prefix,$special); - $group_list = $this->Application->ConfigValue('User_GuestGroup').','.$this->Application->ConfigValue('User_LoggedInGroup'); - $this->SetField('GroupList', $group_list); + if (!defined('ADMIN')) { + $group_list = $this->Application->ConfigValue('User_GuestGroup').','.$this->Application->ConfigValue('User_LoggedInGroup'); + $this->SetField('GroupList', $group_list); + } } }