Index: branches/RC/core/units/general/inp_ses_storage.php =================================================================== diff -u -r11428 -r11828 --- branches/RC/core/units/general/inp_ses_storage.php (.../inp_ses_storage.php) (revision 11428) +++ branches/RC/core/units/general/inp_ses_storage.php (.../inp_ses_storage.php) (revision 11828) @@ -90,14 +90,15 @@ function StoreSession(&$session, $additional_fields = Array()) { - $fields_hash = Array( 'PortalUserId' => $this->Application->IsAdmin() ? 0 : -2, // Guest - 'Language' => $this->Application->GetDefaultLanguageId(), - 'Theme' => $this->Application->GetDefaultThemeId(), - 'IpAddress' => $_SERVER['REMOTE_ADDR'], - 'GroupId' => $this->Application->ConfigValue('User_GuestGroup'), - 'GroupList' => $this->Application->ConfigValue('User_GuestGroup'), - 'CurrentTempKey'=> $session->SID, - ); + $fields_hash = Array ( + 'PortalUserId' => $this->Application->IsAdmin() ? 0 : -2, // Guest + 'Language' => $this->Application->GetDefaultLanguageId(), + 'Theme' => $this->Application->GetDefaultThemeId(), + 'IpAddress' => $_SERVER['REMOTE_ADDR'], + 'GroupId' => $this->Application->ConfigValue('User_GuestGroup'), + 'GroupList' => $this->Application->ConfigValue('User_GuestGroup'), + 'CurrentTempKey'=> $session->SID, + ); parent::StoreSession($session, $fields_hash); }