From 223277cc4441af2fbbc1cf8dad1205e52babf2e6 Mon Sep 17 00:00:00 2001 From: nacin Date: Mon, 3 May 2010 09:51:40 +0000 Subject: [PATCH] Fix notice in ms_not_installed(). git-svn-id: http://svn.automattic.com/wordpress/trunk@14364 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 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