From a85b87515e0cdc85247f13162d3e69a0dceb475d Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 26 Jun 2013 19:33:58 +0000 Subject: [PATCH] Remove some old debug cruft left by yours truly. fixes #24462. git-svn-id: https://develop.svn.wordpress.org/trunk@24518 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/ms-load.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) . '

';