Make WordPress Core

Ticket #25229: wp-includes-class-wp-admin-bar.php.patch

File wp-includes-class-wp-admin-bar.php.patch, 933 bytes (added by betzster, 11 years ago)

wp-includes/class-wp-admin-bar.php

  • .

  • wp-includes/class-wp-admin-bar.php

    Property changes on: .
    ___________________________________________________________________
    Added: svn:ignore
    ## -0,0 +1 ##
    +wp-content
     
    5858                wp_enqueue_script( 'admin-bar' );
    5959                wp_enqueue_style( 'admin-bar' );
    6060
     61                /**
     62                 * Fires after WP_Admin_Bar is initialized
     63                 *
     64                 * @since 3.0.2
     65                 */
    6166                do_action( 'admin_bar_init' );
    6267        }
    6368
     
    487492
    488493                add_action( 'admin_bar_menu', 'wp_admin_bar_add_secondary_groups', 200 );
    489494
     495                /**
     496                 * Fires after menus are added to the menu bar
     497                 *
     498                 * @since 3.0.4
     499                 */
    490500                do_action( 'add_admin_bar_menus' );
    491501        }
    492502}