Add Content-Type header to admin-ajax and press this, props UnderWordPressure, fixes #8795

git-svn-id: http://svn.automattic.com/wordpress/trunk@10375 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-01-18 05:40:40 +00:00
parent d9917e53e8
commit fd6f6fe44b
2 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ define('WP_ADMIN', true);
require_once('../wp-load.php');
require_once('includes/admin.php');
@header('Content-Type: text/html; charset=' . get_option('blog_charset'));
if ( ! is_user_logged_in() ) {

View File

@ -8,6 +8,7 @@
/** WordPress Administration Bootstrap */
require_once('admin.php');
header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
if ( ! current_user_can('publish_posts') ) wp_die( __( 'Cheatin’ uh?' ) );