From c55a06370b0b5cd6f2b70c4b38b0d66d6d215d2b Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Thu, 13 Nov 2014 12:49:42 +0000 Subject: [PATCH] Fix selector for the "Live Widget Previews" feature pointer. props rzen. fixes #30158. git-svn-id: https://develop.svn.wordpress.org/trunk@30332 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/template.php b/src/wp-admin/includes/template.php index 7bf22a7cf0..edeb937425 100644 --- a/src/wp-admin/includes/template.php +++ b/src/wp-admin/includes/template.php @@ -2032,7 +2032,7 @@ final class WP_Internal_Pointers { $selector = '.theme.active .customize'; $position = array( 'edge' => is_rtl() ? 'right' : 'left', 'align' => 'center' ); } else { - $selector = 'a[href="customize.php"]'; + $selector = 'a[href^="customize.php"]'; if ( is_rtl() ) { $position = array( 'edge' => 'right', 'align' => 'center', 'my' => 'right-5px' ); } else {