Ticket #2350: xmlrpc.patch
| File xmlrpc.patch, 481 bytes (added by , 20 years ago) |
|---|
-
wordpress/local/xmlrpc.php
=== wordpress/local/xmlrpc.php ==================================================================
6 6 $_COOKIE = array(); 7 7 8 8 # fix for mozBlog and other cases where '<?xml' isn't on the very first line 9 $HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA); 9 if (isset($HTTP_RAW_POST_DATA)) { 10 $HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA); 11 } 10 12 11 13 include('./wp-config.php'); 12 14