Changeset 1814287
- Timestamp:
- 02/02/2018 04:58:57 PM (8 years ago)
- Location:
- gator-cache/trunk
- Files:
-
- 2 edited
-
gator-cache.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gator-cache/trunk/gator-cache.php
r1814163 r1814287 2 2 /** 3 3 * @package Gator Cache 4 * @version 2.1. 64 * @version 2.1.7 5 5 */ 6 6 /* … … 12 12 Text Domain: gator-cache 13 13 Domain Path: /lang 14 Version: 2.1. 614 Version: 2.1.7 15 15 */ 16 16 class WpGatorCache … … 49 49 protected static $multiSiteData; 50 50 const PREFIX = 'gtr_cache'; 51 const VERSION = '2.1. 6';51 const VERSION = '2.1.7'; 52 52 const JP_MOBILE_MOD = 'minileven'; // JetPack mobile module slug 53 53 const SUPPORT_LINK = 'https://wordpress.org/support/plugin/gator-cache'; … … 57 57 $options = self::getOptions(); 58 58 $request = GatorCache::getRequest(); 59 // work-around for recent version of WooCommerce prevent caching on later hook 60 if (defined('WOOCOMMERCE_VERSION') && false !== has_filter('wp', 'WC_Cache_Helper::prevent_caching')) { 61 WC_Cache_Helper::prevent_caching(); 62 remove_filter('wp', 'WC_Cache_Helper::prevent_caching'); 63 } 59 64 global $post; 60 65 if (!$options['enabled'] -
gator-cache/trunk/readme.txt
r1814154 r1814287 5 5 Requires at least: 3.8 6 6 Tested up to: 4.9.2 7 Stable tag: 2.1. 67 Stable tag: 2.1.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 55 55 56 56 == Changelog == 57 = 2.1.7 = 58 * Compatiblity with recent versions of WooCommerce, will not cache cart, checkout or other pertinent pages 57 59 = 2.1.6 = 58 60 * WordPress 4.9.2 compatiblity verified
Note: See TracChangeset
for help on using the changeset viewer.