Always clears future publication hook in case the post status bounced from future to draft.

git-svn-id: https://develop.svn.wordpress.org/trunk@4078 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-08-07 04:43:38 +00:00
parent ac77e5291f
commit 7c6d67134e

View File

@ -688,10 +688,12 @@ function wp_insert_post($postarr = array()) {
do_action('publish_page', $post_ID);
}
if ( 'future' == $post_status ) {
wp_clear_scheduled_hook('publish_future_post', $post_ID);
// Always clears the hook in case the post status bounced from future to draft.
wp_clear_scheduled_hook('publish_future_post', $post_ID);
// Schedule publication.
if ( 'future' == $post_status )
wp_schedule_single_event(mysql2date('U', $post_date), 'publish_future_post', $post_ID);
}
do_action('save_post', $post_ID);
do_action('wp_insert_post', $post_ID);