Ticket #30002: 30002.2.1.patch
| File 30002.2.1.patch, 737 bytes (added by , 11 years ago) |
|---|
-
wp-includes/ms-load.php
400 400 $title = __( 'Error establishing a database connection' ); 401 401 $msg = '<h1>' . $title . '</h1>'; 402 402 if ( ! is_admin() ) { 403 d ie( $msg);403 dead_db(); 404 404 } 405 405 $msg .= '<p>' . __( 'If your site does not display, please contact the owner of this network.' ) . ''; 406 406 $msg .= ' ' . __( 'If you are the owner of this network please check that MySQL is running properly and all tables are error free.' ) . '</p>'; … … 420 420 } 421 421 $msg .= '</ul>'; 422 422 423 wp_die( $msg, $title ); 423 $wpdb->error = $msg; 424 dead_db(); 424 425 } 425 426 426 427 /**