diff -r f507feede89a -r 09a1c134465b web/wp-includes/class-wp-ajax-response.php --- a/web/wp-includes/class-wp-ajax-response.php Wed Dec 19 12:35:13 2012 -0800 +++ b/web/wp-includes/class-wp-ajax-response.php Wed Dec 19 17:46:52 2012 -0800 @@ -126,8 +126,8 @@ * @since 2.1.0 */ function send() { - header('Content-Type: text/xml'); - echo ""; + header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ) ); + echo ""; foreach ( (array) $this->responses as $response ) echo $response; echo '';