From 959be340936f38bc4ea75cd7a26e89884b75ee9c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 18 Sep 2013 11:57:59 +0000 Subject: [PATCH] Correct @since for hooks in wp-includes/class-wp-admin-bar.php. see #25229. git-svn-id: https://develop.svn.wordpress.org/trunk@25478 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-admin-bar.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/class-wp-admin-bar.php b/src/wp-includes/class-wp-admin-bar.php index f3fa82ddf3..1418756247 100644 --- a/src/wp-includes/class-wp-admin-bar.php +++ b/src/wp-includes/class-wp-admin-bar.php @@ -59,9 +59,9 @@ class WP_Admin_Bar { wp_enqueue_style( 'admin-bar' ); /** - * Fires after WP_Admin_Bar is initialized + * Fires after WP_Admin_Bar is initialized. * - * @since 3.0.2 + * @since 3.1.0 */ do_action( 'admin_bar_init' ); } @@ -493,9 +493,9 @@ class WP_Admin_Bar { add_action( 'admin_bar_menu', 'wp_admin_bar_add_secondary_groups', 200 ); /** - * Fires after menus are added to the menu bar + * Fires after menus are added to the menu bar. * - * @since 3.0.4 + * @since 3.1.0 */ do_action( 'add_admin_bar_menus' ); }