Changeset 13416
- Timestamp:
- 02/25/2010 10:01:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-writing.php
r13412 r13416 82 82 </table> 83 83 84 <?php if ( !is_multisite() || defined( 'POST_BY_EMAIL') ) { ?>84 <?php if ( apply_filters( 'enable_post_by_email_configuration', true ) ) { ?> 85 85 <h3><?php _e('Post via e-mail') ?></h3> 86 86 <p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: <kbd>%s</kbd>, <kbd>%s</kbd>, <kbd>%s</kbd>.'), wp_generate_password(8, false), wp_generate_password(8, false), wp_generate_password(8, false)) ?></p> -
trunk/wp-includes/ms-default-filters.php
r13414 r13416 40 40 // Disable somethings by default for multisite 41 41 add_filter( 'enable_update_services_configuration', '__return_false' ); 42 add_filter( 'enable_post_by_email_configuration', '__return_false' ); 42 43 ?>
Note: See TracChangeset
for help on using the changeset viewer.