From b3b1b00cff026add736825005c916c04f22904ed Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 19 Oct 2011 21:52:14 +0000 Subject: [PATCH] Strip out the show_wp_pointer_admin_bar for now. see #18693. git-svn-id: https://develop.svn.wordpress.org/trunk@19015 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 51fc471298..b57a751b35 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1675,7 +1675,7 @@ function wp_pointer_enqueue( $hook_suffix ) { $dismissed = explode( ',', (string) get_user_meta( get_current_user_id(), 'dismissed_wp_pointers', true ) ); - if ( ! in_array( 'wp330-admin-bar', $dismissed ) && apply_filters( 'show_wp_pointer_admin_bar', true ) ) { + if ( ! in_array( 'wp330-admin-bar', $dismissed ) ) { $enqueue = true; add_action( 'admin_print_footer_scripts', '_wp_pointer_print_admin_bar' ); }