mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
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:
parent
d9917e53e8
commit
fd6f6fe44b
@ -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() ) {
|
||||
|
||||
|
@ -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?' ) );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user