diff --git a/wp-admin/network/site-new.php b/wp-admin/network/site-new.php index 82421d6910..8da0bd69a5 100644 --- a/wp-admin/network/site-new.php +++ b/wp-admin/network/site-new.php @@ -49,7 +49,12 @@ if ( isset($_REQUEST['action']) && 'add-site' == $_REQUEST['action'] ) { $subdirectory_reserved_names = get_subdirectory_reserved_names(); if ( in_array( $domain, $subdirectory_reserved_names ) ) { - wp_die( sprintf( __( 'The following words are reserved for use by WordPress functions and cannot be used as blog names: %s' ), implode( ', ', $subdirectory_reserved_names ) ) ); + wp_die( + /* translators: %s: reserved names list */ + sprintf( __( 'The following words are reserved for use by WordPress functions and cannot be used as blog names: %s' ), + '' . implode( ', ', $subdirectory_reserved_names ) . '' + ) + ); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index b04a420f2c..e56e3322f6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta1-36770'; +$wp_version = '4.5-beta1-36771'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.