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
This commit is contained in:
parent
0b3af6dd91
commit
a85b87515e
|
@ -240,7 +240,7 @@ function ms_not_installed() {
|
|||
die( $msg );
|
||||
$msg .= '<p>' . __( '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.' ) . '</p>';
|
||||
if ( false && !$wpdb->get_var( "SHOW TABLES LIKE '$wpdb->site'" ) )
|
||||
if ( ! $wpdb->get_var( "SHOW TABLES LIKE '$wpdb->site'" ) )
|
||||
$msg .= '<p>' . sprintf( __( '<strong>Database tables are missing.</strong> This means that MySQL is not running, WordPress was not installed properly, or someone deleted <code>%s</code>. You really should look at your database now.' ), $wpdb->site ) . '</p>';
|
||||
else
|
||||
$msg .= '<p>' . sprintf( __( '<strong>Could not find site <code>%1$s</code>.</strong> Searched for table <code>%2$s</code> in database <code>%3$s</code>. Is that right?' ), rtrim( $domain . $path, '/' ), $wpdb->blogs, DB_NAME ) . '</p>';
|
||||
|
|
Loading…
Reference in New Issue