From 07ea6a233446b9ceaae8675b1682f8434f1c4b68 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Sat, 12 Sep 2015 19:47:53 +0000 Subject: [PATCH] Themes: Don't use HTML entities for placeholders. See #32875. git-svn-id: https://develop.svn.wordpress.org/trunk@34086 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/theme-install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/theme-install.php b/src/wp-admin/theme-install.php index fc984fe0d6..92fd53ccb1 100644 --- a/src/wp-admin/theme-install.php +++ b/src/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.' ),