Make WordPress Core

Changeset 24518


Ignore:
Timestamp:
06/26/2013 07:33:58 PM (12 years ago)
Author:
nacin
Message:

Remove some old debug cruft left by yours truly. fixes #24462.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/ms-load.php

    r24189 r24518  
    241241    $msg .= '<p>' . __( 'If your site does not display, please contact the owner of this network.' ) . '';
    242242    $msg .= ' ' . __( 'If you are the owner of this network please check that MySQL is running properly and all tables are error free.' ) . '</p>';
    243     if ( false && !$wpdb->get_var( "SHOW TABLES LIKE '$wpdb->site'" ) )
     243    if ( ! $wpdb->get_var( "SHOW TABLES LIKE '$wpdb->site'" ) )
    244244        $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>';
    245245    else
Note: See TracChangeset for help on using the changeset viewer.