From 4d2f247e41cb77b7abd53ebf49e116ab3461e12d Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 9 Sep 2011 17:49:30 +0000 Subject: [PATCH] Update blog last_updated time only on publish_post. Both private_to_published and publish_phone are overly broad and otherwise redundant. props mdawaffe, fixes #18624. git-svn-id: https://develop.svn.wordpress.org/trunk@18657 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/ms-default-filters.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/wp-includes/ms-default-filters.php b/wp-includes/ms-default-filters.php index e533252f4b..f2fd68f7a6 100644 --- a/wp-includes/ms-default-filters.php +++ b/wp-includes/ms-default-filters.php @@ -36,8 +36,6 @@ add_filter( 'allowed_redirect_hosts', 'redirect_this_site' ); add_filter( 'term_id_filter', 'global_terms', 10, 2 ); add_action( 'publish_post', 'update_posts_count' ); add_action( 'delete_post', 'wpmu_update_blogs_date' ); -add_action( 'private_to_published', 'wpmu_update_blogs_date' ); -add_action( 'publish_phone', 'wpmu_update_blogs_date' ); add_action( 'publish_post', 'wpmu_update_blogs_date' ); add_action( 'admin_init', 'wp_schedule_update_network_counts'); add_action( 'update_network_counts', 'wp_update_network_counts');