Skip to:
Content

BuddyPress.org

Ticket #4489: 4489.001.patch

File 4489.001.patch, 1.7 KB (added by DJPaul, 14 years ago)
  • bp-core/bp-core-loader.php

    class BP_Core extends BP_Component { 
    222222
    223223                        // Add the subnav items to the profile
    224224                        $sub_nav[] = array(
    225                                 'name'            => __( 'Public', 'buddypress' ),
     225                                'name'            => __( 'About', 'buddypress' ),
    226226                                'slug'            => 'public',
    227227                                'parent_url'      => $profile_link,
    228228                                'parent_slug'     => $bp->core->profile->slug,
  • bp-members/bp-members-loader.php

    class BP_Members_Component extends BP_Component { 
    169169
    170170                        // Add the subnav items to the profile
    171171                        $sub_nav[] = array(
    172                                 'name'            => __( 'Public', 'buddypress' ),
     172                                'name'            => __( 'About', 'buddypress' ),
    173173                                'slug'            => 'public',
    174174                                'parent_url'      => $profile_link,
    175175                                'parent_slug'     => $bp->profile->slug,
  • bp-xprofile/bp-xprofile-loader.php

    class BP_XProfile_Component extends BP_Component { 
    159159
    160160                // Add the subnav items to the profile
    161161                $sub_nav[] = array(
    162                         'name'            => __( 'Public', 'buddypress' ),
     162                        'name'            => __( 'About', 'buddypress' ),
    163163                        'slug'            => 'public',
    164164                        'parent_url'      => $profile_link,
    165165                        'parent_slug'     => $this->slug,