From a4dc43106cc9f7eb2b71d56caec287e1df55691b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 8 Nov 2015 01:34:26 +0000 Subject: [PATCH] Remove `` tags from translatable string in `wp-admin/network/settings.php`. Add translator comment. Props ramiy. Fixes #34618. Built from https://develop.svn.wordpress.org/trunk@35570 git-svn-id: http://core.svn.wordpress.org/trunk@35534 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/network/settings.php | 8 +++++++- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/wp-admin/network/settings.php b/wp-admin/network/settings.php index fac3659a25..cd8e251d8b 100644 --- a/wp-admin/network/settings.php +++ b/wp-admin/network/settings.php @@ -137,7 +137,13 @@ if ( isset( $_GET['updated'] ) ) {
' . __( 'If registration is disabled, please set NOBLOGREDIRECT in wp-config.php to a URL you will redirect visitors to if they visit a non-existent site.' ) . '

'; + echo '

'; + /* translators: 1: NOBLOGREDIRECT 2: wp-config.php */ + printf( __( 'If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.' ), + 'NOBLOGREDIRECT', + 'wp-config.php' + ); + echo '

'; } ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index a1e9511387..38b66c1aba 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta3-35569'; +$wp_version = '4.4-beta3-35570'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.