Plugin Directory

Changeset 3148703


Ignore:
Timestamp:
09/09/2024 01:15:52 PM (19 months ago)
Author:
slimndap
Message:

1.29.4

Location:
jeero/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • jeero/trunk/Jeero.php

    r3125950 r3148703  
    66 * Author:          Slim & Dapper
    77 * Author URI:      https://slimndap.com
    8  * Version:         1.29.3
     8 * Version:         1.29.4
    99 * Text Domain:     jeero
    1010 *
     
    1919}
    2020
    21 define( 'Jeero\VERSION', '1.29.3' );
     21define( 'Jeero\VERSION', '1.29.4' );
    2222define( 'Jeero\PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
    2323define( 'Jeero\PLUGIN_URI', plugin_dir_url( __FILE__ ) );
  • jeero/trunk/includes/Admin/Subscriptions/Subscriptions.php

    r3125950 r3148703  
    478478 * @since   1.29
    479479 * @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.
    480482 */
    481483function show_wp_cron_disabled_error() {
     
    492494    }
    493495
    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 ) ) {
    495498        ?><div class="notice notice-error">
    496499            <p><strong><?php _e( 'Jeero import error: WP-Cron not working', 'jeero' ); ?></strong></p>
  • jeero/trunk/readme.txt

    r3136194 r3148703  
    256256== Upgrade Notice ==
    257257
    258 = 1.29.3 =
     258= 1.29.4 =
    259259* Improved detection of malfunctioning WP-Cron.
    260260
Note: See TracChangeset for help on using the changeset viewer.