From fca9f2e2e36577278327f7dfcc13f12f1e5e8230 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 14 Oct 2011 18:39:31 +0000 Subject: [PATCH] In wp_trash_post(), rename the trash_post action to wp_trash_post to avoid collision with the wp_transition_post_status() trash_post state transition. Props SergeyBiryukov. fixes #15628 git-svn-id: http://svn.automattic.com/wordpress/trunk@18974 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index d305dd82e..c4ce1af42 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -2075,7 +2075,7 @@ function wp_trash_post($post_id = 0) { if ( $post['post_status'] == 'trash' ) return false; - do_action('trash_post', $post_id); + do_action('wp_trash_post', $post_id); add_post_meta($post_id,'_wp_trash_meta_status', $post['post_status']); add_post_meta($post_id,'_wp_trash_meta_time', time());