diff --git a/wp-includes/ms-load.php b/wp-includes/ms-load.php index b6be47c80..ca946b531 100644 --- a/wp-includes/ms-load.php +++ b/wp-includes/ms-load.php @@ -199,7 +199,8 @@ function wpmu_current_site() { function ms_not_installed() { global $wpdb, $domain, $path; - $msg = '

' . /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/ . '

'; + $title = /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/; + $msg = '

' . $title . '

'; if ( ! is_admin() ) die( $msg ); $msg .= '

' . /*WP_I18N_CONTACT_OWNER*/'If your site does not display, please contact the owner of this network.'/*/WP_I18N_CONTACT_OWNER*/ . ''; @@ -220,3 +221,5 @@ function ms_not_installed() { wp_die( $msg, $title ); } + +?> \ No newline at end of file