From a5529285d12e013f92921004bdc2bb60ca91855a Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 10 Sep 2015 20:36:24 +0000 Subject: [PATCH] `_wpThemeSettings.l10n.searchPlaceholder` is an input placeholder and doesn't handle UTF-8 or HTML entities properly. In lieu of using literal Unicode here, use `...`. See #32875. Built from https://develop.svn.wordpress.org/trunk@34014 git-svn-id: http://core.svn.wordpress.org/trunk@33983 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/themes.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/themes.php b/wp-admin/themes.php index 9236b46bad..cee26b626c 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -137,7 +137,7 @@ wp_localize_script( 'theme', '_wpThemeSettings', array( 'l10n' => array( 'addNew' => __( 'Add New Theme' ), 'search' => __( 'Search Installed Themes' ), - 'searchPlaceholder' => __( 'Search installed themes…' ), // placeholder (no ellipsis) + 'searchPlaceholder' => __( 'Search installed themes...' ), // placeholder (no ellipsis) 'themesFound' => __( 'Number of Themes found: %d' ), 'noThemesFound' => __( 'No themes found. Try a different search.' ), ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 61b00be34f..e0fda922da 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34013'; +$wp_version = '4.4-alpha-34014'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.