summaryrefslogtreecommitdiffstats
path: root/wp-admin/includes/mu.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-01-11 16:54:14 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-01-11 16:54:14 +0000
commitf4c6c9f9c07caadb3ce3f4d48f1aa796e3534928 (patch)
treec2fe3a5301b1978115dcedefb213afccddbed356 /wp-admin/includes/mu.php
parent86d789eb857f6e3193467b8301537369fb1b799e (diff)
downloadwordpress-mu-f4c6c9f9c07caadb3ce3f4d48f1aa796e3534928.tar.gz
wordpress-mu-f4c6c9f9c07caadb3ce3f4d48f1aa796e3534928.tar.xz
wordpress-mu-f4c6c9f9c07caadb3ce3f4d48f1aa796e3534928.zip
No need for this any more, fixes #534, props drmike
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1184 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/includes/mu.php')
-rw-r--r--wp-admin/includes/mu.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/wp-admin/includes/mu.php b/wp-admin/includes/mu.php
index 263d4c4..d24ce46 100644
--- a/wp-admin/includes/mu.php
+++ b/wp-admin/includes/mu.php
@@ -279,24 +279,6 @@ function upload_space_setting( $id ) {
}
add_action('wpmueditblogaction', 'upload_space_setting');
-// Edit XMLRPC active setting on Edit Blog page
-function xmlrpc_active_setting( $id ) {
- $site_xmlrpc = get_site_option( 'xmlrpc_active' );
- $xmlrpc_active = get_blog_option($id, 'xmlrpc_active');
-
- if( $site_xmlrpc == 'yes' ) { ?>
- <p><strong><?php _e('XMLRPC Posting is enabled sitewide.'); ?></strong></p>
- <?php } else { ?>
- <p><strong><?php _e('XMLRPC Posting is disabled sitewide.'); ?></strong></p>
- <?php } ?>
-
- <input type='radio' name='option[xmlrpc_active]' value='' <?php if( !$xmlrpc_active || $xmlrpc_active == '' ) echo "checked='checked'"; ?> /> <?php _e('Do nothing, accept sitewide default'); ?><br />
- <input type='radio' name='option[xmlrpc_active]' value='yes' <?php if( $xmlrpc_active == "yes" ) echo "checked='checked'"; ?> /> <?php _e('XMLRPC always on for this blog'); ?><br />
- <input type='radio' name='option[xmlrpc_active]' value='no' <?php if( $xmlrpc_active == "no" ) echo "checked='checked'"; ?> /> <?php _e('XMLRPC always off for this blog'); ?><br />
- <?php
-}
-add_action('wpmueditblogaction', 'xmlrpc_active_setting');
-
function update_user_status( $id, $pref, $value, $refresh = 1 ) {
global $wpdb;