Ticket #11940: 11940.patch
File 11940.patch, 1017 bytes (added by , 15 years ago) |
---|
-
functions.php
2859 2859 status_header( 500 ); 2860 2860 nocache_headers(); 2861 2861 header( 'Content-Type: text/html; charset=utf-8' ); 2862 ?> 2863 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2864 <html xmlns="http://www.w3.org/1999/xhtml" <?php if ( function_exists( 'language_attributes' ) ) language_attributes(); ?>> 2862 echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2863 <html xmlns="http://www.w3.org/1999/xhtml"'.function_exists( 'language_attributes' ) ? language_attributes() : null.'> 2865 2864 <head> 2866 2865 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 2867 2866 <title>Database Error</title> 2868 2869 2867 </head> 2870 2868 <body> 2871 2869 <h1>Error establishing a database connection</h1> 2872 2870 </body> 2873 2871 </html> 2874 <?php 2872 '; 2875 2873 die(); 2876 2874 } 2877 2875