From 95bd9f37ca9dcb4ab49dc84e898f79f3f32aa458 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 24 Feb 2016 01:06:26 +0000 Subject: [PATCH] I18N: Remove `` tag from translatable string in `wp-admin/includes/class-wp-ms-sites-list-table.php`. Props ramiy. Fixes #35676. Built from https://develop.svn.wordpress.org/trunk@36663 git-svn-id: http://core.svn.wordpress.org/trunk@36630 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-ms-sites-list-table.php | 10 ++++++++-- wp-includes/version.php | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/class-wp-ms-sites-list-table.php b/wp-admin/includes/class-wp-ms-sites-list-table.php index fe6a225b4c..9dd1d38f2d 100644 --- a/wp-admin/includes/class-wp-ms-sites-list-table.php +++ b/wp-admin/includes/class-wp-ms-sites-list-table.php @@ -315,8 +315,14 @@ class WP_MS_Sites_List_Table extends WP_List_Table { ' . sprintf( __( '%1$s – %2$s' ), get_option( 'blogname' ), get_option( 'blogdescription ' ) ) . '

'; + echo '

'; + printf( + /* translators: 1: site name, 2: site tagline. */ + __( '%1$s – %2$s' ), + get_option( 'blogname' ), + '' . get_option( 'blogdescription ' ) . '' + ); + echo '

'; restore_current_blog(); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 1baf5e92b8..5c192f1f52 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36662'; +$wp_version = '4.5-alpha-36663'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.