Fix offset direction for schedule sales cron

Fixes #13105
This commit is contained in:
Mike Jolley 2017-02-08 12:08:49 +00:00
parent 649f55b494
commit dd70417758
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ class WC_Install {
wp_clear_scheduled_hook( 'woocommerce_geoip_updater' );
wp_clear_scheduled_hook( 'woocommerce_tracker_send_event' );
$ve = get_option( 'gmt_offset' ) > 0 ? '+' : '-';
$ve = get_option( 'gmt_offset' ) > 0 ? '-' : '+';
wp_schedule_event( strtotime( '00:00 tomorrow ' . $ve . get_option( 'gmt_offset' ) . ' HOURS' ), 'daily', 'woocommerce_scheduled_sales' );