Changeset 31899 for trunk/src/wp-includes/ms-load.php
- Timestamp:
- 03/26/2015 03:16:33 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-load.php
r31657 r31899 409 409 $query = $wpdb->prepare( "SHOW TABLES LIKE %s", $wpdb->esc_like( $wpdb->site ) ); 410 410 if ( ! $wpdb->get_var( $query ) ) { 411 $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>'; 411 $msg .= '<p>' . sprintf( 412 /* translators: %s: table name */ 413 __( '<strong>Database tables are missing.</strong> This means that MySQL is not running, WordPress was not installed properly, or someone deleted %s. You really should look at your database now.' ), 414 '<code>' . $wpdb->site . '</code>' 415 ) . '</p>'; 412 416 } else { 413 $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>'; 417 $msg .= '<p>' . sprintf( 418 /* translators: 1: site url, 2: table name, 3: database name */ 419 __( '<strong>Could not find site %1$s.</strong> Searched for table %2$s in database %3$s. Is that right?' ), 420 '<code>' . rtrim( $domain . $path, '/' ) . '</code>', 421 '<code>' . $wpdb->blogs . '</code>', 422 '<code>' . DB_NAME . '</code>' 423 ) . '</p>'; 414 424 } 415 425 $msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> ';
Note: See TracChangeset
for help on using the changeset viewer.