Validation fix from Viper007Bond. fixes #3140

git-svn-id: https://develop.svn.wordpress.org/trunk@4193 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-09-18 23:33:25 +00:00
parent 62c5e0449b
commit 3e42d396bd
1 changed files with 2 additions and 2 deletions

View File

@ -308,7 +308,7 @@ class wpdb {
if ( !$this->show_errors )
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">
<html xmlns="http://www.w3.org/1999/xhtml">
@ -354,7 +354,7 @@ class wpdb {
</style>
</head>
<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>
</body>
</html>