We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96fd06e commit 8d02a0bCopy full SHA for 8d02a0b
1 file changed
wp-includes/ms-load.php
@@ -199,7 +199,8 @@ function wpmu_current_site() {
199
function ms_not_installed() {
200
global $wpdb, $domain, $path;
201
202
- $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*/;
203
+ $msg = '<h1>' . $title . '</h1>';
204
if ( ! is_admin() )
205
die( $msg );
206
$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() {
220
221
222
wp_die( $msg, $title );
223
}
224
+
225
+?>
0 commit comments