Skip to:
Content

BuddyPress.org

Ticket #4255: 4255.patch

File 4255.patch, 3.8 KB (added by johnjamesjacoby, 12 years ago)
  • bp-core/bp-core-adminbar.php

     
    2020 * @since BuddyPress (1.5.2)
    2121 */
    2222function bp_core_admin_bar_version_check() {
    23         if ( '3.2' == bp_get_major_wp_version() ) {
     23        if ( 3.2 == bp_get_major_wp_version() ) {
    2424                add_action( 'bp_setup_admin_bar', 'bp_admin_bar_root_site',       3 );
    2525                add_action( 'bp_setup_admin_bar', 'bp_admin_bar_comments_menu',   3 );
    2626                add_action( 'bp_setup_admin_bar', 'bp_admin_bar_appearance_menu', 3 );
     
    4040 */
    4141function bp_admin_bar_remove_wp_menus() {
    4242
    43         if ( '3.2' == bp_get_major_wp_version() ) {
     43        if ( 3.2 == bp_get_major_wp_version() ) {
    4444                remove_action( 'admin_bar_menu', 'wp_admin_bar_my_account_menu', 10 );
    4545                remove_action( 'admin_bar_menu', 'wp_admin_bar_my_sites_menu', 20 );
    4646                remove_action( 'admin_bar_menu', 'wp_admin_bar_dashboard_view_site_menu', 25 );
  • bp-groups/bp-groups-adminbar.php

     
    4949        if ( !is_super_admin() && !bp_group_is_admin() )
    5050                return false;
    5151
    52         if ( '3.2' == bp_get_major_wp_version() ) {
     52        if ( 3.2 == bp_get_major_wp_version() ) {
    5353
    5454                // Group avatar
    5555                $avatar = bp_core_fetch_avatar( array(
     
    7171                        'href'  => bp_get_group_permalink( $bp->groups->current_group )
    7272                ) );
    7373
    74         } elseif ( '3.3' == bp_get_major_wp_version() ) {
    75  No newline at end of file
     74        } elseif ( 3.3 <= bp_get_major_wp_version() ) {
     75 No newline at end of file
    7676               
    7777                // Unique ID for the 'My Account' menu
  • bp-members/bp-members-adminbar.php

     		$bp->group_admin_menu_id = 'group-admin';
     
    5050        // Logged in user
    5151        if ( is_user_logged_in() ) {
    5252
    53                 if ( '3.2' == bp_get_major_wp_version() ) {
     53                if ( 3.2 == bp_get_major_wp_version() ) {
    5454
    5555                        // User avatar
    5656                        $avatar = bp_core_fetch_avatar( array(
     
    125125        if ( !current_user_can( 'edit_users' ) || bp_is_my_profile() )
    126126                return false;
    127127
    128         if ( '3.2' == bp_get_major_wp_version() ) {
     128        if ( 3.2 == bp_get_major_wp_version() ) {
    129129
    130130                // User avatar
    131131                $avatar = bp_core_fetch_avatar( array(
     
    145145                        'href'  => bp_displayed_user_domain()
    146146                ) );
    147147
    148         } elseif ( '3.3' == bp_get_major_wp_version() ) {
     148        } elseif ( 3.3 <= bp_get_major_wp_version() ) {
    149149               
    150150                // Unique ID for the 'My Account' menu
    151151                $bp->user_admin_menu_id = 'user-admin';
     
    221221                $menu_title = __( 'Notifications', 'buddypress' );
    222222        }
    223223
    224         if ( '3.2' == bp_get_major_wp_version() ) {
     224        if ( 3.2 == bp_get_major_wp_version() ) {
    225225
    226226                // Add the top-level Notifications button
    227227                $wp_admin_bar->add_menu( array(
     
    230230                        'href'  => bp_loggedin_user_domain()
    231231                ) );
    232232
    233         } elseif ( '3.3' == bp_get_major_wp_version() ) {
    234  No newline at end of file
     233        } elseif ( 3.3 == bp_get_major_wp_version() ) {
     234 No newline at end of file
    235235               
    236236                // Add the top-level Notifications button
  • bp-themes/bp-default/functions.php

     		$wp_admin_bar->add_menu( array(
     
    8383
    8484        // This theme allows users to set a custom background
    8585        // Backward-compatibility with WP < 3.4 will be removed in a future release
    86         if ( bp_get_major_wp_version() >= 3.4 ) {
     86        if ( 3.4 <= bp_get_major_wp_version() ) {
    8787                $custom_background_args = array(
    8888                        'wp-head-callback' => 'bp_dtheme_custom_background_style'
    8989                );
     
    107107
    108108                // Add a way for the custom header to be styled in the admin panel that controls custom headers.
    109109                // Backward-compatibility with WP < 3.4 will be removed in a future release
    110                 if ( bp_get_major_wp_version() >= 3.4 ) {
     110                if ( 3.4 <= bp_get_major_wp_version() ) {
    111111                        $custom_header_args = array(
    112112                                'wp-head-callback' => 'bp_dtheme_header_style',
    113113                                'admin-head-callback' => 'bp_dtheme_admin_header_style'