backing out that encoding fix until further testing is done

git-svn-id: http://svn.automattic.com/wordpress/trunk@1335 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
michelvaldrighi 2004-05-21 21:29:57 +00:00
parent 056ba53cce
commit 8055e88898
1 changed files with 3 additions and 0 deletions

View File

@ -612,11 +612,14 @@ class xmlrpcmsg {
} }
function xml_header() { function xml_header() {
/* commenting this out until we get further testing...
if (function_exists('get_settings')) { if (function_exists('get_settings')) {
$encoding = ' encoding="'.get_settings('blog_charset').'"'; $encoding = ' encoding="'.get_settings('blog_charset').'"';
} else { } else {
$encoding = ''; $encoding = '';
} }
*/
$encoding = '';
return "<?xml version=\"1.0\"$encoding?".">\n<methodCall>\n"; return "<?xml version=\"1.0\"$encoding?".">\n<methodCall>\n";
} }