| 3766 | | status_header( 500 ); |
| 3767 | | nocache_headers(); |
| 3768 | | header( 'Content-Type: text/html; charset=utf-8' ); |
| 3769 | | ?> |
| 3770 | | <!DOCTYPE html> |
| 3771 | | <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>> |
| 3772 | | <head> |
| 3773 | | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 3774 | | <title><?php _e( 'Database Error' ); ?></title> |
| 3775 | | |
| 3776 | | </head> |
| 3777 | | <body> |
| 3778 | | <h1><?php _e( 'Error establishing a database connection' ); ?></h1> |
| 3779 | | </body> |
| 3780 | | </html> |
| 3781 | | <?php |
| 3782 | | die(); |
| | 3766 | wp_die( '<h1>' . __( 'Error establishing a database connection' ) . '</h1>', __( 'Database Error' ) ); |