Skip to:
Content

BuddyPress.org

Ticket #4737: 4737-02.patch

File 4737-02.patch, 1.5 KB (added by mercime, 12 years ago)

clean up

  • bp-groups-loader.php

     
    472472                        }
    473473
    474474                        // If the user is a group mod or more, then show the group admin nav item
    475                         if ( bp_is_item_admin() || bp_is_item_mod() ) {
     475                        if ( bp_is_item_admin() ) {
    476476                                $sub_nav[] = array(
    477477                                        'name'            => __( 'Admin', 'buddypress' ),
    478478                                        'slug'            => 'admin',
  • bp-groups-screens.php

     
    513513        if ( 'edit-details' != bp_get_group_current_admin_tab() )
    514514                return false;
    515515
    516         if ( bp_is_item_admin() || bp_is_item_mod() ) {
     516        if ( bp_is_item_admin() ) {
    517517
    518518                $bp = buddypress();
    519519
  • bp-groups-template.php

     
    14341434
    14351435        $current_tab = bp_get_group_current_admin_tab();
    14361436
    1437         if ( bp_is_item_admin() || bp_is_item_mod() ) : ?>
     1437        if ( bp_is_item_admin() ) : ?>
    14381438
    14391439                <li<?php if ( 'edit-details' == $current_tab || empty( $current_tab ) ) : ?> class="current"<?php endif; ?>><a href="<?php echo trailingslashit( bp_get_group_permalink( $group ) . 'admin/edit-details' ) ?>"><?php _e( 'Details', 'buddypress' ); ?></a></li>
    14401440