From 720cea8cf943f5ecb128be6a4f9ab56ac6875f8a Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Sat, 12 Sep 2015 19:48:24 +0000 Subject: [PATCH] Themes: Don't use HTML entities for placeholders. See #32875. Built from https://develop.svn.wordpress.org/trunk@34086 git-svn-id: http://core.svn.wordpress.org/trunk@34054 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/theme-install.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/theme-install.php b/wp-admin/theme-install.php index fc984fe0d6..92fd53ccb1 100644 --- a/wp-admin/theme-install.php +++ b/wp-admin/theme-install.php @@ -45,7 +45,7 @@ wp_localize_script( 'theme', '_wpThemeSettings', array( 'l10n' => array( 'addNew' => __( 'Add New Theme' ), 'search' => __( 'Search Themes' ), - 'searchPlaceholder' => __( 'Search themes…' ), // placeholder (no ellipsis) + 'searchPlaceholder' => __( 'Search themes...' ), // placeholder (no ellipsis) 'upload' => __( 'Upload Theme' ), 'back' => __( 'Back' ), 'error' => __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 62f28351b1..e2adc34889 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34085'; +$wp_version = '4.4-alpha-34086'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.