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
This commit is contained in:
michelvaldrighi 2004-05-21 21:29:57 +00:00
parent be29cd98fb
commit 63f7bf9723
1 changed files with 3 additions and 0 deletions

View File

@ -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 "<?xml version=\"1.0\"$encoding?".">\n<methodCall>\n";
}