Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/16/2014 02:13:53 PM (10 years ago)
Author:
boonebgorges
Message:

Proper ordering for Settings subnav items in WP Admin Bar

Fixes #5537

Props r-a-y

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-loader.php

    r8223 r8277  
    270270            );
    271271
     272            // Personal
     273            $wp_admin_nav[] = array(
     274                'parent' => 'my-account-' . $this->id,
     275                'id'     => 'my-account-' . $this->id . '-personal',
     276                'title'  => __( 'Personal', 'buddypress' ),
     277                'href'   => trailingslashit( $activity_link )
     278            );
     279
    272280            // Mentions
    273281            if ( bp_activity_do_mentions() ) {
     
    279287                );
    280288            }
    281 
    282             // Personal
    283             $wp_admin_nav[] = array(
    284                 'parent' => 'my-account-' . $this->id,
    285                 'id'     => 'my-account-' . $this->id . '-personal',
    286                 'title'  => __( 'Personal', 'buddypress' ),
    287                 'href'   => trailingslashit( $activity_link )
    288             );
    289289
    290290            // Favorites
Note: See TracChangeset for help on using the changeset viewer.