diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 7bf22a7cf0..edeb937425 100644 --- a/wp-admin/includes/template.php +++ b/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 { diff --git a/wp-includes/version.php b/wp-includes/version.php index 71b6471156..bfcb7586d2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30331'; +$wp_version = '4.1-alpha-30332'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.