html_type to allow for true XHTML.

git-svn-id: http://svn.automattic.com/wordpress/trunk@2321 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt
2005-02-14 04:36:57 +00:00
parent 41f2e62b24
commit 8e014dea63
14 changed files with 24 additions and 20 deletions

View File

@@ -112,7 +112,7 @@ if ( !empty($error) && '404' == $error ) {
@header('HTTP/1.x 404 Not Found');
} else if ( empty($feed) ) {
@header('X-Pingback: '. get_bloginfo('pingback_url'));
@header('Content-type: text/html; charset=' . get_option('blog_charset'));
@header('Content-type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
} else {
// We're showing a feed, so WP is indeed the only thing that last changed
if ( $withcomments )