mirror of
git://develop.git.wordpress.org/
synced 2025-02-25 17:13:30 +01:00
Skip ALTERNATE_WP_CRON redirect when performing XML-RPC requests.
props markoheijnen. fixes #27447. git-svn-id: https://develop.svn.wordpress.org/trunk@29732 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5a89372970
commit
2becf84579
@ -245,9 +245,10 @@ function spawn_cron( $gmt_time = 0 ) {
|
||||
if ( isset($keys[0]) && $keys[0] > $gmt_time )
|
||||
return;
|
||||
|
||||
if ( defined('ALTERNATE_WP_CRON') && ALTERNATE_WP_CRON ) {
|
||||
if ( !empty($_POST) || defined('DOING_AJAX') )
|
||||
if ( defined( 'ALTERNATE_WP_CRON' ) && ALTERNATE_WP_CRON ) {
|
||||
if ( ! empty( $_POST ) || defined( 'DOING_AJAX' ) || defined( 'XMLRPC_REQUEST' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$doing_wp_cron = sprintf( '%.22F', $gmt_time );
|
||||
set_transient( 'doing_cron', $doing_wp_cron );
|
||||
|
Loading…
x
Reference in New Issue
Block a user