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:
parent
056ba53cce
commit
8055e88898
|
@ -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";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue