Plugin Directory

Changeset 3271786


Ignore:
Timestamp:
04/13/2025 11:57:55 AM (10 months ago)
Author:
handyplugins
Message:

Update to version 0.7 from GitHub

Location:
wonder-cache
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wonder-cache/tags/0.7/dropins/advanced-cache.php

    r2984048 r3271786  
    5757    public $cancel = false; // Change this to cancel the output buffer. Use wondercache_cancel();
    5858
     59    public $cookie = '';
    5960    public $noskip_cookies = array( 'wordpress_test_cookie' ); // Names of cookies - if they exist and the cache would normally be bypassed, don't bypass it
    6061    public $cacheable_origin_hostnames = array(); // A whitelist of HTTP origin `<host>:<port>` (or just `<host>`) names that are allowed as cache variations.
     
    6364    public $genlock = false;
    6465    public $do = false;
     66
     67    //Declare used variables for PHP 8.2+
     68    public $cache = array();
     69    public $key = '';
     70    public $keys = array();
     71    public $permalink = '';
     72    public $pos = 0;
     73    public $req_key = '';
     74    public $requests = 0;
     75    public $status_code = null;
     76    public $url_key = '';
     77    public $url_version = null;
    6578
    6679    function __construct( $settings ) {
  • wonder-cache/tags/0.7/readme.txt

    r3183567 r3271786  
    44Requires at least: 4.7
    55Requires PHP: 5.6
    6 Tested up to: 6.7
    7 Stable tag: 0.6
     6Tested up to: 6.8
     7Stable tag: 0.7
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8989== Changelog ==
    9090
     91= 0.7 (April 13, 2025) =
     92- PHP 8.2 compatibility: Declare used properties
     93- Tested with WordPress 6.8
     94
    9195= 0.6 (August 07, 2024) =
    9296- Make sure deactivation doesn't cause fatal error when advanced-cache.php overwritten by other plugins.
  • wonder-cache/tags/0.7/wonder-cache.php

    r3132098 r3271786  
    88 * Text Domain:     wonder-cache
    99 * Domain Path:     /languages
    10  * Version:         0.6
     10 * Version:         0.7
    1111 * Network:         true
    1212 * Requires at least: 4.7
  • wonder-cache/trunk/dropins/advanced-cache.php

    r2984048 r3271786  
    5757    public $cancel = false; // Change this to cancel the output buffer. Use wondercache_cancel();
    5858
     59    public $cookie = '';
    5960    public $noskip_cookies = array( 'wordpress_test_cookie' ); // Names of cookies - if they exist and the cache would normally be bypassed, don't bypass it
    6061    public $cacheable_origin_hostnames = array(); // A whitelist of HTTP origin `<host>:<port>` (or just `<host>`) names that are allowed as cache variations.
     
    6364    public $genlock = false;
    6465    public $do = false;
     66
     67    //Declare used variables for PHP 8.2+
     68    public $cache = array();
     69    public $key = '';
     70    public $keys = array();
     71    public $permalink = '';
     72    public $pos = 0;
     73    public $req_key = '';
     74    public $requests = 0;
     75    public $status_code = null;
     76    public $url_key = '';
     77    public $url_version = null;
    6578
    6679    function __construct( $settings ) {
  • wonder-cache/trunk/readme.txt

    r3183567 r3271786  
    44Requires at least: 4.7
    55Requires PHP: 5.6
    6 Tested up to: 6.7
    7 Stable tag: 0.6
     6Tested up to: 6.8
     7Stable tag: 0.7
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8989== Changelog ==
    9090
     91= 0.7 (April 13, 2025) =
     92- PHP 8.2 compatibility: Declare used properties
     93- Tested with WordPress 6.8
     94
    9195= 0.6 (August 07, 2024) =
    9296- Make sure deactivation doesn't cause fatal error when advanced-cache.php overwritten by other plugins.
  • wonder-cache/trunk/wonder-cache.php

    r3132098 r3271786  
    88 * Text Domain:     wonder-cache
    99 * Domain Path:     /languages
    10  * Version:         0.6
     10 * Version:         0.7
    1111 * Network:         true
    1212 * Requires at least: 4.7
Note: See TracChangeset for help on using the changeset viewer.