From 63f7bf9723ca3143d69ca0f71d763b9f5eebd44a Mon Sep 17 00:00:00 2001 From: michelvaldrighi Date: Fri, 21 May 2004 21:29:57 +0000 Subject: [PATCH] backing out that encoding fix until further testing is done git-svn-id: https://develop.svn.wordpress.org/trunk@1335 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/class-xmlrpc.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-includes/class-xmlrpc.php b/wp-includes/class-xmlrpc.php index 69023cb254..61338bfbdd 100644 --- a/wp-includes/class-xmlrpc.php +++ b/wp-includes/class-xmlrpc.php @@ -612,11 +612,14 @@ class xmlrpcmsg { } function xml_header() { + /* commenting this out until we get further testing... if (function_exists('get_settings')) { $encoding = ' encoding="'.get_settings('blog_charset').'"'; } else { $encoding = ''; } + */ + $encoding = ''; return "\n\n"; }