From 8d02a0bee500d4a698b47b6bfac30339602b75ca Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 3 May 2010 09:51:40 +0000 Subject: [PATCH] Fix notice in ms_not_installed(). git-svn-id: https://develop.svn.wordpress.org/trunk@14364 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/ms-load.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wp-includes/ms-load.php b/wp-includes/ms-load.php index b6be47c80b..ca946b5310 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