Changeset 40385 for branches/4.7/src/wp-includes/ms-default-filters.php
- Timestamp:
- 04/06/2017 05:26:04 PM (8 years ago)
- Location:
- branches/4.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
- Property svn:mergeinfo changed
/trunk merged: 40305,40333
- Property svn:mergeinfo changed
-
branches/4.7/src/wp-includes/ms-default-filters.php
r34251 r40385 85 85 remove_filter( 'option_home', '_config_wp_home' ); 86 86 87 // Some options changes should trigger blog details refresh. 88 add_action( 'update_option_blogname', 'refresh_blog_details', 10, 0 ); 89 add_action( 'update_option_siteurl', 'refresh_blog_details', 10, 0 ); 90 add_action( 'update_option_post_count', 'refresh_blog_details', 10, 0 ); 87 // Some options changes should trigger site details refresh. 88 add_action( 'update_option_blogname', 'clean_site_details_cache', 10, 0 ); 89 add_action( 'update_option_siteurl', 'clean_site_details_cache', 10, 0 ); 90 add_action( 'update_option_post_count', 'clean_site_details_cache', 10, 0 ); 91 add_action( 'update_option_home', 'clean_site_details_cache', 10, 0 ); 91 92 92 93 // If the network upgrade hasn't run yet, assume ms-files.php rewriting is used.
Note: See TracChangeset
for help on using the changeset viewer.