Changeset 3271786
- Timestamp:
- 04/13/2025 11:57:55 AM (10 months ago)
- Location:
- wonder-cache
- Files:
-
- 6 edited
- 1 copied
-
tags/0.7 (copied) (copied from wonder-cache/trunk)
-
tags/0.7/dropins/advanced-cache.php (modified) (2 diffs)
-
tags/0.7/readme.txt (modified) (2 diffs)
-
tags/0.7/wonder-cache.php (modified) (1 diff)
-
trunk/dropins/advanced-cache.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wonder-cache.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wonder-cache/tags/0.7/dropins/advanced-cache.php
r2984048 r3271786 57 57 public $cancel = false; // Change this to cancel the output buffer. Use wondercache_cancel(); 58 58 59 public $cookie = ''; 59 60 public $noskip_cookies = array( 'wordpress_test_cookie' ); // Names of cookies - if they exist and the cache would normally be bypassed, don't bypass it 60 61 public $cacheable_origin_hostnames = array(); // A whitelist of HTTP origin `<host>:<port>` (or just `<host>`) names that are allowed as cache variations. … … 63 64 public $genlock = false; 64 65 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; 65 78 66 79 function __construct( $settings ) { -
wonder-cache/tags/0.7/readme.txt
r3183567 r3271786 4 4 Requires at least: 4.7 5 5 Requires PHP: 5.6 6 Tested up to: 6. 77 Stable tag: 0. 66 Tested up to: 6.8 7 Stable tag: 0.7 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 89 89 == Changelog == 90 90 91 = 0.7 (April 13, 2025) = 92 - PHP 8.2 compatibility: Declare used properties 93 - Tested with WordPress 6.8 94 91 95 = 0.6 (August 07, 2024) = 92 96 - 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 8 8 * Text Domain: wonder-cache 9 9 * Domain Path: /languages 10 * Version: 0. 610 * Version: 0.7 11 11 * Network: true 12 12 * Requires at least: 4.7 -
wonder-cache/trunk/dropins/advanced-cache.php
r2984048 r3271786 57 57 public $cancel = false; // Change this to cancel the output buffer. Use wondercache_cancel(); 58 58 59 public $cookie = ''; 59 60 public $noskip_cookies = array( 'wordpress_test_cookie' ); // Names of cookies - if they exist and the cache would normally be bypassed, don't bypass it 60 61 public $cacheable_origin_hostnames = array(); // A whitelist of HTTP origin `<host>:<port>` (or just `<host>`) names that are allowed as cache variations. … … 63 64 public $genlock = false; 64 65 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; 65 78 66 79 function __construct( $settings ) { -
wonder-cache/trunk/readme.txt
r3183567 r3271786 4 4 Requires at least: 4.7 5 5 Requires PHP: 5.6 6 Tested up to: 6. 77 Stable tag: 0. 66 Tested up to: 6.8 7 Stable tag: 0.7 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 89 89 == Changelog == 90 90 91 = 0.7 (April 13, 2025) = 92 - PHP 8.2 compatibility: Declare used properties 93 - Tested with WordPress 6.8 94 91 95 = 0.6 (August 07, 2024) = 92 96 - Make sure deactivation doesn't cause fatal error when advanced-cache.php overwritten by other plugins. -
wonder-cache/trunk/wonder-cache.php
r3132098 r3271786 8 8 * Text Domain: wonder-cache 9 9 * Domain Path: /languages 10 * Version: 0. 610 * Version: 0.7 11 11 * Network: true 12 12 * Requires at least: 4.7
Note: See TracChangeset
for help on using the changeset viewer.