Changeset 3148703
- Timestamp:
- 09/09/2024 01:15:52 PM (19 months ago)
- Location:
- jeero/trunk
- Files:
-
- 3 edited
-
Jeero.php (modified) (2 diffs)
-
includes/Admin/Subscriptions/Subscriptions.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jeero/trunk/Jeero.php
r3125950 r3148703 6 6 * Author: Slim & Dapper 7 7 * Author URI: https://slimndap.com 8 * Version: 1.29. 38 * Version: 1.29.4 9 9 * Text Domain: jeero 10 10 * … … 19 19 } 20 20 21 define( 'Jeero\VERSION', '1.29. 3' );21 define( 'Jeero\VERSION', '1.29.4' ); 22 22 define( 'Jeero\PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 23 23 define( 'Jeero\PLUGIN_URI', plugin_dir_url( __FILE__ ) ); -
jeero/trunk/includes/Admin/Subscriptions/Subscriptions.php
r3125950 r3148703 478 478 * @since 1.29 479 479 * @since 1.29.3 Disabled cron detection now uses next pickup instead of next import. 480 * @since 1.29.4 Disabled cron detection now has some breathing space to prevent false positives 481 * if the user refreshes the screen before WP was able to schedule the next pickip. 480 482 */ 481 483 function show_wp_cron_disabled_error() { … … 492 494 } 493 495 494 if ( $current_time > $next_pickup ) { 496 // Cron is disabled if the next pickup is not scheduled in the future (with 10 minutes breathing space). 497 if ( $current_time > ( $next_pickup + 10 * MINUTE_IN_SECONDS ) ) { 495 498 ?><div class="notice notice-error"> 496 499 <p><strong><?php _e( 'Jeero import error: WP-Cron not working', 'jeero' ); ?></strong></p> -
jeero/trunk/readme.txt
r3136194 r3148703 256 256 == Upgrade Notice == 257 257 258 = 1.29. 3=258 = 1.29.4 = 259 259 * Improved detection of malfunctioning WP-Cron. 260 260
Note: See TracChangeset
for help on using the changeset viewer.