summaryrefslogtreecommitdiffstats
path: root/wp-admin/wpmu-options.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-21 09:06:08 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-21 09:06:08 +0000
commit8fd5e5d764d7badb0b7b12b7a041524cfe0652c6 (patch)
treec8ffcafa10c41dfc805fa54d10a85ab9857f90cf /wp-admin/wpmu-options.php
parent8135512ad4a83da15c0581fa043da040b290105a (diff)
downloadwordpress-mu-8fd5e5d764d7badb0b7b12b7a041524cfe0652c6.tar.gz
wordpress-mu-8fd5e5d764d7badb0b7b12b7a041524cfe0652c6.tar.xz
wordpress-mu-8fd5e5d764d7badb0b7b12b7a041524cfe0652c6.zip
Enable xmlrpc posting by default
User must be logged in, props Gianluca. git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1114 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/wpmu-options.php')
-rw-r--r--wp-admin/wpmu-options.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-admin/wpmu-options.php b/wp-admin/wpmu-options.php
index 1a59e66..746fec5 100644
--- a/wp-admin/wpmu-options.php
+++ b/wp-admin/wpmu-options.php
@@ -74,7 +74,7 @@ if (isset($_GET['updated'])) {
<th scope="row"><?php _e('Enable posting by XMLRPC') ?></th>
<?php
if( !get_site_option('xmlrpc_active') )
- update_site_option( 'xmlrpc_active', 'no' );
+ update_site_option( 'xmlrpc_active', 'yes' );
?>
<td>
<input name="xmlrpc_active" type="radio" id="xmlrpc_active1" value='yes' <?php echo get_site_option('xmlrpc_active') == 'yes' ? 'checked="checked"' : ''; ?> /> <?php _e('Yes'); ?><br />
@@ -212,4 +212,4 @@ if (isset($_GET['updated'])) {
</form>
</div>
-<?php include('./admin-footer.php'); ?> \ No newline at end of file
+<?php include('./admin-footer.php'); ?>