Changeset 12825
- Timestamp:
- 12/13/2020 04:02:38 PM (4 years ago)
- Location:
- branches/7.0/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/7.0/src/bp-groups/bp-groups-admin.php
r12777 r12825 66 66 } 67 67 68 if ( bp_is_network_activated() && is_network_admin() ) {68 if ( bp_is_network_activated() && ! bp_is_multiblog_mode() && is_network_admin() ) { 69 69 // Adds a 'bp-groups' submenu to go to the root blog Group types screen. 70 70 $group_type_admin_url = add_query_arg( 'taxonomy', 'bp_group_type', get_admin_url( bp_get_root_blog_id(), 'edit-tags.php' ) ); … … 77 77 ); 78 78 } elseif ( ! is_network_admin() ) { 79 if ( bp_is_network_activated() ) {79 if ( bp_is_network_activated() && ! bp_is_multiblog_mode() ) { 80 80 // Adds a 'bp-groups' menu to the root blog menu. 81 81 $redirect_hook = add_menu_page( -
branches/7.0/src/bp-members/bp-members-admin.php
r12775 r12825 24 24 } 25 25 26 if ( bp_is_network_activated() && is_network_admin() ) {26 if ( bp_is_network_activated() && ! bp_is_multiblog_mode() && is_network_admin() ) { 27 27 // Adds a users.php submenu to go to the root blog Member types screen. 28 28 $member_type_admin_url = add_query_arg( 'taxonomy', bp_get_member_type_tax_name(), get_admin_url( bp_get_root_blog_id(), 'edit-tags.php' ) );
Note: See TracChangeset
for help on using the changeset viewer.