Loading modules/social_features/social_tagging/src/SocialTaggingOverrides.php +12 −3 Original line number Diff line number Diff line Loading @@ -257,10 +257,19 @@ class SocialTaggingOverrides implements ConfigFactoryOverrideInterface { } $relationship = ($config_name === 'views.view.group_topics' || $config_name === 'views.view.group_events') ? 'gc__node' : 'none'; $table = ($config_name === 'views.view.newest_groups') ? 'group__social_tagging' : 'node__social_tagging'; if ($tag_service->profileActive()) { // Select the correct table, based on the config. switch ($config_name) { case 'views.view.newest_groups': $table = 'group__social_tagging'; break; case 'views.view.newest_users': $table = 'profile__social_tagging'; break; default: $table = 'node__social_tagging'; } foreach ($fields as $field => $data) { Loading Loading
modules/social_features/social_tagging/src/SocialTaggingOverrides.php +12 −3 Original line number Diff line number Diff line Loading @@ -257,10 +257,19 @@ class SocialTaggingOverrides implements ConfigFactoryOverrideInterface { } $relationship = ($config_name === 'views.view.group_topics' || $config_name === 'views.view.group_events') ? 'gc__node' : 'none'; $table = ($config_name === 'views.view.newest_groups') ? 'group__social_tagging' : 'node__social_tagging'; if ($tag_service->profileActive()) { // Select the correct table, based on the config. switch ($config_name) { case 'views.view.newest_groups': $table = 'group__social_tagging'; break; case 'views.view.newest_users': $table = 'profile__social_tagging'; break; default: $table = 'node__social_tagging'; } foreach ($fields as $field => $data) { Loading