Changeset 53394
- Timestamp:
- 05/13/2022 12:19:35 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-load.php
r53250 r53394 473 473 $msg = '<h1>' . $title . '</h1>'; 474 474 $msg .= '<p>' . __( 'If your site does not display, please contact the owner of this network.' ) . ''; 475 $msg .= ' ' . __( 'If you are the owner of this network please check that MySQLis running properly and all tables are error free.' ) . '</p>';475 $msg .= ' ' . __( 'If you are the owner of this network please check that your host’s database server is running properly and all tables are error free.' ) . '</p>'; 476 476 $query = $wpdb->prepare( 'SHOW TABLES LIKE %s', $wpdb->esc_like( $wpdb->site ) ); 477 477 if ( ! $wpdb->get_var( $query ) ) { 478 478 $msg .= '<p>' . sprintf( 479 479 /* translators: %s: Table name. */ 480 __( '<strong>Database tables are missing.</strong> This means that MySQLis not running, WordPress was not installed properly, or someone deleted %s. You really should look at your database now.' ),480 __( '<strong>Database tables are missing.</strong> This means that your host’s database server is not running, WordPress was not installed properly, or someone deleted %s. You really should look at your database now.' ), 481 481 '<code>' . $wpdb->site . '</code>' 482 482 ) . '</p>';
Note: See TracChangeset
for help on using the changeset viewer.