diff --git a/wp-includes/ms-load.php b/wp-includes/ms-load.php index 95663e518a..55659a2822 100644 --- a/wp-includes/ms-load.php +++ b/wp-includes/ms-load.php @@ -240,7 +240,7 @@ function ms_not_installed() { die( $msg ); $msg .= '

' . __( 'If your site does not display, please contact the owner of this network.' ) . ''; $msg .= ' ' . __( 'If you are the owner of this network please check that MySQL is running properly and all tables are error free.' ) . '

'; - if ( false && !$wpdb->get_var( "SHOW TABLES LIKE '$wpdb->site'" ) ) + if ( ! $wpdb->get_var( "SHOW TABLES LIKE '$wpdb->site'" ) ) $msg .= '

' . sprintf( __( 'Database tables are missing. This means that MySQL is not running, WordPress was not installed properly, or someone deleted %s. You really should look at your database now.' ), $wpdb->site ) . '

'; else $msg .= '

' . sprintf( __( 'Could not find site %1$s. Searched for table %2$s in database %3$s. Is that right?' ), rtrim( $domain . $path, '/' ), $wpdb->blogs, DB_NAME ) . '

';