Ticket #26869: 26869-25281.diff
| File 26869-25281.diff, 859 bytes (added by , 12 years ago) |
|---|
-
src/xmlrpc.php
46 46 /** 47 47 * Add additional APIs to the Really Simple Discovery (RSD) endpoint. 48 48 * 49 * @see http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html 49 * @link http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html 50 * 50 51 * @since 3.5.0 51 52 */ 52 53 do_action( 'xmlrpc_rsd_apis' ); … … 73 74 * Filter the class used for handling XML-RPC requests. 74 75 * 75 76 * @since 3.1.0 76 * @param string The name of the XML-RPC server class. 77 * 78 * @param string $class The name of the XML-RPC server class. 77 79 */ 78 80 $wp_xmlrpc_server_class = apply_filters( 'wp_xmlrpc_server_class', 'wp_xmlrpc_server' ); 79 81 $wp_xmlrpc_server = new $wp_xmlrpc_server_class;