From 22c5a6f185aafff9267ce16db4e890f9f453aa61 Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 15 Oct 2007 17:25:03 +0000 Subject: If a blogger really needs xmlrpc, then add "xmlrpc_active"="yes" to their blog's options table git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1078 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/wpmu-functions.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'wp-includes') diff --git a/wp-includes/wpmu-functions.php b/wp-includes/wpmu-functions.php index e31d86e..dc1b7cc 100644 --- a/wp-includes/wpmu-functions.php +++ b/wp-includes/wpmu-functions.php @@ -1929,6 +1929,10 @@ function is_xmlrpc_active() { if ($HTTP_RAW_POST_DATA) $data = $HTTP_RAW_POST_DATA; + // add this to a blog's options table to enable xmlrpc on that blog + if( get_option( 'xmlrpc_active' ) == 'yes' ) + return true; + // kill everything but pingbacks if xmlrpc is disabled if( defined( 'XMLRPC_REQUEST' ) && strpos( $data, 'pingback.ping' ) === false && get_site_option( 'xmlrpc_active' ) != 'yes' ) die(); -- cgit