From c8e7e66ee70b91b77fbcd1879de12bfba91fd7dc Mon Sep 17 00:00:00 2001 From: ryan Date: Sat, 24 Jun 2006 06:00:24 +0000 Subject: [PATCH] Send Content-type for 404s. Props Nazgul. fixes #2841 git-svn-id: http://svn.automattic.com/wordpress/trunk@3915 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/classes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/classes.php b/wp-includes/classes.php index a4ecc54c40..976a727608 100644 --- a/wp-includes/classes.php +++ b/wp-includes/classes.php @@ -234,6 +234,7 @@ class WP { nocache_headers(); if ( !empty($this->query_vars['error']) && '404' == $this->query_vars['error'] ) { status_header( 404 ); + @header('Content-type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); } else if ( empty($this->query_vars['feed']) ) { @header('Content-type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); } else {