Skip to content

Commit 8d02a0b

Browse files
committed
Fix notice in ms_not_installed().
git-svn-id: https://develop.svn.wordpress.org/trunk@14364 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 96fd06e commit 8d02a0b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

wp-includes/ms-load.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ function wpmu_current_site() {
199199
function ms_not_installed() {
200200
global $wpdb, $domain, $path;
201201

202-
$msg = '<h1>' . /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/ . '</h1>';
202+
$title = /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/;
203+
$msg = '<h1>' . $title . '</h1>';
203204
if ( ! is_admin() )
204205
die( $msg );
205206
$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() {
220221

221222
wp_die( $msg, $title );
222223
}
224+
225+
?>

0 commit comments

Comments
 (0)