Changeset 47122 for trunk/src/wp-includes/ms-default-filters.php
- Timestamp:
- 01/29/2020 12:43:23 AM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/ms-default-filters.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-default-filters.php
r44468 r47122 16 16 add_action( 'init', 'ms_subdomain_constants' ); 17 17 18 // Functions 18 // Functions. 19 19 add_action( 'update_option_blog_public', 'update_blog_public', 10, 2 ); 20 20 add_filter( 'option_users_can_register', 'users_can_register_signup_filter' ); 21 21 add_filter( 'site_option_welcome_user_email', 'welcome_user_msg_filter' ); 22 22 23 // Users 23 // Users. 24 24 add_filter( 'wpmu_validate_user_signup', 'signup_nonce_check' ); 25 25 add_action( 'init', 'maybe_add_existing_user_to_blog' ); … … 33 33 add_filter( 'sanitize_user', 'strtolower' ); 34 34 35 // Roles 35 // Roles. 36 36 add_action( 'switch_blog', 'wp_switch_roles_and_user', 1, 2 ); 37 37 38 // Blogs 38 // Blogs. 39 39 add_filter( 'wpmu_validate_blog_signup', 'signup_nonce_check' ); 40 40 add_action( 'wpmu_activate_blog', 'wpmu_welcome_notification', 10, 5 ); … … 54 54 add_action( 'update_blog_public', 'wp_update_blog_public_option_on_site_update', 1, 2 ); 55 55 56 // Site meta 56 // Site meta. 57 57 add_action( 'added_blog_meta', 'wp_cache_set_sites_last_changed' ); 58 58 add_action( 'updated_blog_meta', 'wp_cache_set_sites_last_changed' ); … … 67 67 add_filter( 'update_blog_metadata_cache', 'wp_check_site_meta_support_prefilter' ); 68 68 69 // Register Nonce69 // Register nonce. 70 70 add_action( 'signup_hidden_fields', 'signup_nonce_fields' ); 71 71 72 // Template 72 // Template. 73 73 add_action( 'template_redirect', 'maybe_redirect_404' ); 74 74 add_filter( 'allowed_redirect_hosts', 'redirect_this_site' ); 75 75 76 // Administration 76 // Administration. 77 77 add_filter( 'term_id_filter', 'global_terms', 10, 2 ); 78 78 add_action( 'delete_post', '_update_posts_count_on_delete' ); … … 81 81 add_action( 'transition_post_status', '_update_posts_count_on_transition_post_status', 10, 3 ); 82 82 83 // Counts 83 // Counts. 84 84 add_action( 'admin_init', 'wp_schedule_update_network_counts' ); 85 85 add_action( 'update_network_counts', 'wp_update_network_counts', 10, 0 ); … … 92 92 unset( $action ); 93 93 94 // Files 94 // Files. 95 95 add_filter( 'wp_upload_bits', 'upload_is_file_too_big' ); 96 96 add_filter( 'import_upload_size_limit', 'fix_import_form_size' ); … … 99 99 add_action( 'upload_ui_over_quota', 'multisite_over_quota_message' ); 100 100 101 // Mail 101 // Mail. 102 102 add_action( 'phpmailer_init', 'fix_phpmailer_messageid' ); 103 103 104 // Disable somethings by default for multisite 104 // Disable somethings by default for multisite. 105 105 add_filter( 'enable_update_services_configuration', '__return_false' ); 106 if ( ! defined( 'POST_BY_EMAIL' ) || ! POST_BY_EMAIL ) { // back compat constant.106 if ( ! defined( 'POST_BY_EMAIL' ) || ! POST_BY_EMAIL ) { // Back compat constant. 107 107 add_filter( 'enable_post_by_email_configuration', '__return_false' ); 108 108 } 109 if ( ! defined( 'EDIT_ANY_USER' ) || ! EDIT_ANY_USER ) { // back compat constant.109 if ( ! defined( 'EDIT_ANY_USER' ) || ! EDIT_ANY_USER ) { // Back compat constant. 110 110 add_filter( 'enable_edit_any_user_configuration', '__return_false' ); 111 111 } 112 112 add_filter( 'force_filtered_html_on_import', '__return_true' ); 113 113 114 // WP_HOME and WP_SITEURL should not have any effect in MS 114 // WP_HOME and WP_SITEURL should not have any effect in MS. 115 115 remove_filter( 'option_siteurl', '_config_wp_siteurl' ); 116 116 remove_filter( 'option_home', '_config_wp_home' ); … … 125 125 add_filter( 'default_site_option_ms_files_rewriting', '__return_true' ); 126 126 127 // Whitelist multisite domains for HTTP requests 127 // Whitelist multisite domains for HTTP requests. 128 128 add_filter( 'http_request_host_is_external', 'ms_allowed_http_request_hosts', 20, 2 );
Note: See TracChangeset
for help on using the changeset viewer.