Plugin Directory

Changeset 3159569


Ignore:
Timestamp:
09/29/2024 08:48:42 PM (16 months ago)
Author:
tmmtechnology
Message:

Plugin update: Important bug fix

Location:
cache-warmer
Files:
3 edited
103 copied

Legend:

Unmodified
Added
Removed
  • cache-warmer/tags/1.3.2/cache-warmer.php

    r3159567 r3159569  
    33 * Plugin Name: Cache Warmer
    44 * Description: Visits website pages to warm (create) the cache if you have any caching solutions configured.
    5  * Version:     1.3.1
     5 * Version:     1.3.2
    66 * Text Domain: cache-warmer
    77 * Author:      TMM Technology
  • cache-warmer/tags/1.3.2/readme.txt

    r3159567 r3159569  
    33Tags: cache, warming, cloudflare, redis, object cache
    44Tested up to: 6.6.2
    5 Stable tag: 1.3.1
     5Stable tag: 1.3.2
    66Requires PHP: 7.4
    77License: GPLv3
     
    5757== Changelog ==
    5858
     59= 1.3.2 2024-09-29 =
     60
     61#### Bugfixes
     62
     63* Warming start bug fix.
     64
    5965= 1.3.1 2024-09-29 =
    6066
  • cache-warmer/tags/1.3.2/src/class-ajax.php

    r3159567 r3159569  
    4848
    4949        foreach ( $admin_ajax_events as $ajax_event ) {
    50             add_action( 'wp_ajax_cache_warmer_' . $ajax_event, [ $this, $ajax_event ] );
     50            add_action( 'wp_ajax_cache_warmer_' . $ajax_event, [ $this, $ajax_event ], 10, 0 );
    5151        }
    5252    }
  • cache-warmer/trunk/cache-warmer.php

    r3159567 r3159569  
    33 * Plugin Name: Cache Warmer
    44 * Description: Visits website pages to warm (create) the cache if you have any caching solutions configured.
    5  * Version:     1.3.1
     5 * Version:     1.3.2
    66 * Text Domain: cache-warmer
    77 * Author:      TMM Technology
  • cache-warmer/trunk/readme.txt

    r3159567 r3159569  
    33Tags: cache, warming, cloudflare, redis, object cache
    44Tested up to: 6.6.2
    5 Stable tag: 1.3.1
     5Stable tag: 1.3.2
    66Requires PHP: 7.4
    77License: GPLv3
     
    5757== Changelog ==
    5858
     59= 1.3.2 2024-09-29 =
     60
     61#### Bugfixes
     62
     63* Warming start bug fix.
     64
    5965= 1.3.1 2024-09-29 =
    6066
  • cache-warmer/trunk/src/class-ajax.php

    r3159567 r3159569  
    4848
    4949        foreach ( $admin_ajax_events as $ajax_event ) {
    50             add_action( 'wp_ajax_cache_warmer_' . $ajax_event, [ $this, $ajax_event ] );
     50            add_action( 'wp_ajax_cache_warmer_' . $ajax_event, [ $this, $ajax_event ], 10, 0 );
    5151        }
    5252    }
Note: See TracChangeset for help on using the changeset viewer.