Fix notice in ms_not_installed().

git-svn-id: http://svn.automattic.com/wordpress/trunk@14364 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-05-03 09:51:40 +00:00
parent c5af6664a6
commit 223277cc44
1 changed files with 4 additions and 1 deletions

View File

@ -199,7 +199,8 @@ function wpmu_current_site() {
function ms_not_installed() {
global $wpdb, $domain, $path;
$msg = '<h1>' . /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/ . '</h1>';
$title = /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/;
$msg = '<h1>' . $title . '</h1>';
if ( ! is_admin() )
die( $msg );
$msg .= '<p>' . /*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 );
}
?>