diff -ru wordpress-orig/wp-includes/functions.php wordpress/wp-includes/functions.php
old
|
new
|
|
3343 | 3343 | |
3344 | 3344 | </head> |
3345 | 3345 | <body> |
3346 | | <h1><?php _e( 'Error establishing a database connection' ); ?></h1> |
| 3346 | <h1><?php _e( "Something, at least peripherally related to your database, isn't exactly as it should be, but we refuse to tell you what it is" ); ?></h1> |
3347 | 3347 | </body> |
3348 | 3348 | </html> |
3349 | 3349 | <?php |
diff -ru wordpress-orig/wp-includes/ms-load.php wordpress/wp-includes/ms-load.php
old
|
new
|
|
408 | 408 | |
409 | 409 | wp_load_translations_early(); |
410 | 410 | |
411 | | $title = __( 'Error establishing a database connection' ); |
| 411 | $title = __( "Something, at least peripherally related to your database, isn't exactly as it should be, but we refuse to tell you what it is" ); |
412 | 412 | |
413 | 413 | $msg = '<h1>' . $title . '</h1>'; |
414 | 414 | $msg .= '<p>' . __( 'If your site does not display, please contact the owner of this network.' ) . ''; |
diff -ru wordpress-orig/wp-includes/wp-db.php wordpress/wp-includes/wp-db.php
old
|
new
|
|
1495 | 1495 | } |
1496 | 1496 | |
1497 | 1497 | $this->bail( sprintf( __( " |
1498 | | <h1>Error establishing a database connection</h1> |
| 1498 | <h1>Something, at least peripherally related to your database, isn't exactly as it should be, but we refuse to tell you what it is</h1> |
1499 | 1499 | <p>This either means that the username and password information in your <code>wp-config.php</code> file is incorrect or we can't contact the database server at <code>%s</code>. This could mean your host's database server is down.</p> |
1500 | 1500 | <ul> |
1501 | 1501 | <li>Are you sure you have the correct username and password?</li> |