diff --git a/wp-includes/ms-load.php b/wp-includes/ms-load.php
index 97f45c7360..7da0454fa6 100644
--- a/wp-includes/ms-load.php
+++ b/wp-includes/ms-load.php
@@ -93,10 +93,17 @@ function ms_site_check() {
}
if ( '2' == $blog->deleted ) {
- if ( file_exists( WP_CONTENT_DIR . '/blog-inactive.php' ) )
+ if ( file_exists( WP_CONTENT_DIR . '/blog-inactive.php' ) ) {
return WP_CONTENT_DIR . '/blog-inactive.php';
- else
- wp_die( sprintf( __( 'This site has not been activated yet. If you are having problems activating your site, please contact %1$s.' ), str_replace( '@', ' AT ', get_site_option( 'admin_email', 'support@' . get_current_site()->domain ) ) ) );
+ } else {
+ $admin_email = str_replace( '@', ' AT ', get_site_option( 'admin_email', 'support@' . get_current_site()->domain ) );
+ wp_die(
+ /* translators: %s: admin email link */
+ sprintf( __( 'This site has not been activated yet. If you are having problems activating your site, please contact %s.' ),
+ sprintf( '%s', $admin_email )
+ )
+ );
+ }
}
if ( $blog->archived == '1' || $blog->spam == '1' ) {
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 6420dc0ee2..693df958b4 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.4-beta2-35452';
+$wp_version = '4.4-beta2-35453';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.