Validation fix from Viper007Bond. fixes #3140

git-svn-id: http://svn.automattic.com/wordpress/trunk@4193 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2006-09-18 23:33:25 +00:00
parent a26b883e84
commit 510c17a977
1 changed files with 2 additions and 2 deletions

View File

@ -308,7 +308,7 @@ class wpdb {
if ( !$this->show_errors ) if ( !$this->show_errors )
return false; return false;
header( 'Content-Type: text/html; charset=utf-8'); header('Content-Type: text/html; charset=utf-8');
?> ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
@ -354,7 +354,7 @@ class wpdb {
</style> </style>
</head> </head>
<body> <body>
<h1 id="logo"><img alt="WordPress" src="<?php echo "wp-admin/images/wordpress-logo.png" ?>/></h1> <h1 id="logo"><img alt="WordPress" src="<?php echo 'wp-admin/images/wordpress-logo.png' ?>" /></h1>
<p><?php echo $message; ?></p> <p><?php echo $message; ?></p>
</body> </body>
</html> </html>