diff -r 000000000000 -r d970ebf37754 wp/xmlrpc.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wp/xmlrpc.php Wed Nov 06 03:21:17 2013 +0000 @@ -0,0 +1,99 @@ + +'; ?> + + + WordPress + http://wordpress.org/ + + + + + + + + + + +serve_request(); + +exit; + +/** + * logIO() - Writes logging info to a file. + * + * @deprecated 3.4.0 + * @deprecated Use error_log() + * + * @param string $io Whether input or output + * @param string $msg Information describing logging reason. + */ +function logIO( $io, $msg ) { + _deprecated_function( __FUNCTION__, '3.4', 'error_log()' ); + if ( ! empty( $GLOBALS['xmlrpc_logging'] ) ) + error_log( $io . ' - ' . $msg ); +} \ No newline at end of file