Skip to content
Snippets Groups Projects
Commit ee8ae1e3 authored by penguininja's avatar penguininja Committed by Amitai Burstein
Browse files

Issue #1695116 by penguininja: Fixed OG User Groups View displays Node's...

Issue #1695116 by penguininja: Fixed OG User Groups View displays Node's Groups as well as User's Groups.
parent f831d0f9
No related branches found
No related tags found
No related merge requests found
......@@ -362,6 +362,11 @@ function og_views_default_views() {
$handler->display->display_options['filters']['status']['field'] = 'status';
$handler->display->display_options['filters']['status']['relationship'] = 'og_membership_related_node_group';
$handler->display->display_options['filters']['status']['value'] = '1';
/* Filter criterion: OG membership: Entity_type */
$handler->display->display_options['filters']['entity_type']['id'] = 'entity_type';
$handler->display->display_options['filters']['entity_type']['table'] = 'og_membership';
$handler->display->display_options['filters']['entity_type']['field'] = 'entity_type';
$handler->display->display_options['filters']['entity_type']['value'] = 'user';
if (module_exists('views_content')) {
/* Display: Content pane */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment