Index: branches/5.2.x/core/kernel/session/inp_session_storage.php =================================================================== diff -u -N -r14585 -r14714 --- branches/5.2.x/core/kernel/session/inp_session_storage.php (.../inp_session_storage.php) (revision 14585) +++ branches/5.2.x/core/kernel/session/inp_session_storage.php (.../inp_session_storage.php) (revision 14714) @@ -1,7 +1,7 @@ $this->Application->ConfigValue('User_GuestGroup'), ); + if ( !$this->Application->isAdmin ) { + // Guest users on Front-End belongs to Everyone group too + $fields_hash['GroupList'] .= ',' . $this->Application->ConfigValue('User_LoggedInGroup'); + } + if( isset($_SERVER['REMOTE_ADDR']) ) { $fields_hash['IpAddress'] = $_SERVER['REMOTE_ADDR']; // getenv('REMOTE_ADDR') won't work on IIS, so use $_SERVER instead }