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.