From bcc1670ed674fd3f9302daaa9d7392b001b4ccb6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 3 Jul 2015 22:29:25 +0000 Subject: [PATCH] Customizer: Remove HTML tags from two translatable strings. props henrikakselsen. fixes #32817. Built from https://develop.svn.wordpress.org/trunk@33078 git-svn-id: http://core.svn.wordpress.org/trunk@33049 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-section.php | 12 ++++-------- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/wp-includes/class-wp-customize-section.php b/wp-includes/class-wp-customize-section.php index 2c4db4ef4b..82541878ba 100644 --- a/wp-includes/class-wp-customize-section.php +++ b/wp-includes/class-wp-customize-section.php @@ -401,11 +401,9 @@ class WP_Customize_Themes_Section extends WP_Customize_Section {

manager->is_theme_active() ) { - /* translators: %s: theme name */ - printf( __( 'Active theme %s' ), $this->title ); + echo '' . __( 'Active theme' ) . ' ' . $this->title; } else { - /* translators: %s: theme name */ - printf( __( 'Previewing theme %s' ), $this->title ); + echo '' . __( 'Previewing theme' ) . ' ' . $this->title; } ?> @@ -420,11 +418,9 @@ class WP_Customize_Themes_Section extends WP_Customize_Section {

manager->is_theme_active() ) { - /* translators: %s: theme name */ - printf( __( 'Active theme %s' ), $this->title ); + echo '' . __( 'Active theme' ) . ' ' . $this->title; } else { - /* translators: %s: theme name */ - printf( __( 'Previewing theme %s' ), $this->title ); + echo '' . __( 'Previewing theme' ) . ' ' . $this->title; } ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index 0b1f5fae93..b111ea1c21 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta1-33077'; +$wp_version = '4.3-beta1-33078'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.