Switch to using a filter for {en|dis}abling update services configuration. Fixes #12229. See #12381.

git-svn-id: http://svn.automattic.com/wordpress/trunk@13412 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2010-02-25 21:48:11 +00:00
parent 5a9eb8e363
commit 97090ba1a2
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'default_email_categor
<?php do_settings_fields('writing', 'post_via_email'); ?>
</table>
<?php } ?>
<?php if ( !is_multisite() || ( defined( 'UPDATE_SERVICES' ) && UPDATE_SERVICES ) ) { ?>
<?php if ( apply_filters( 'enable_update_services_configuration', true ) ) { ?>
<h3><?php _e('Update Services') ?></h3>
<?php if ( get_option('blog_public') ) : ?>