mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-18 16:45:31 +01:00
Update wp_clear_scheduled_hook calls to use array when passing args. Fixes #11590 props nacin.
git-svn-id: http://svn.automattic.com/wordpress/trunk@12538 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
47a7b1b003
commit
eb8c1d336e
@ -1251,7 +1251,7 @@ function wp_delete_post( $postid = 0, $force_delete = false ) {
|
|||||||
clean_post_cache($postid);
|
clean_post_cache($postid);
|
||||||
}
|
}
|
||||||
|
|
||||||
wp_clear_scheduled_hook('publish_future_post', $postid);
|
wp_clear_scheduled_hook('publish_future_post', array( $postid ) );
|
||||||
|
|
||||||
do_action('deleted_post', $postid);
|
do_action('deleted_post', $postid);
|
||||||
|
|
||||||
@ -1928,7 +1928,7 @@ function check_and_publish_future_post($post_id) {
|
|||||||
$time = strtotime( $post->post_date_gmt . ' GMT' );
|
$time = strtotime( $post->post_date_gmt . ' GMT' );
|
||||||
|
|
||||||
if ( $time > time() ) { // Uh oh, someone jumped the gun!
|
if ( $time > time() ) { // Uh oh, someone jumped the gun!
|
||||||
wp_clear_scheduled_hook( 'publish_future_post', $post_id ); // clear anything else in the system
|
wp_clear_scheduled_hook( 'publish_future_post', array( $post_id ) ); // clear anything else in the system
|
||||||
wp_schedule_single_event( $time, 'publish_future_post', array( $post_id ) );
|
wp_schedule_single_event( $time, 'publish_future_post', array( $post_id ) );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -3524,7 +3524,7 @@ function _transition_post_status($new_status, $old_status, $post) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Always clears the hook in case the post status bounced from future to draft.
|
// Always clears the hook in case the post status bounced from future to draft.
|
||||||
wp_clear_scheduled_hook('publish_future_post', $post->ID);
|
wp_clear_scheduled_hook('publish_future_post', array( $post->ID ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -3539,7 +3539,7 @@ function _transition_post_status($new_status, $old_status, $post) {
|
|||||||
* @param object $post Object type containing the post information
|
* @param object $post Object type containing the post information
|
||||||
*/
|
*/
|
||||||
function _future_post_hook($deprecated = '', $post) {
|
function _future_post_hook($deprecated = '', $post) {
|
||||||
wp_clear_scheduled_hook( 'publish_future_post', $post->ID );
|
wp_clear_scheduled_hook( 'publish_future_post', array( $post->ID ) );
|
||||||
wp_schedule_single_event(strtotime($post->post_date_gmt. ' GMT'), 'publish_future_post', array($post->ID));
|
wp_schedule_single_event(strtotime($post->post_date_gmt. ' GMT'), 'publish_future_post', array($post->ID));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user