Changeset 1553194
- Timestamp:
- 12/13/2016 12:59:17 AM (9 years ago)
- Location:
- gator-cache
- Files:
-
- 4 edited
-
tags/2.1.4/readme.txt (modified) (1 diff)
-
trunk/gator-cache.php (modified) (3 diffs)
-
trunk/lib/GatorCachePlugin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gator-cache/tags/2.1.4/readme.txt
r1552134 r1553194 58 58 * Verify compatiblity with WordPress 4.7 59 59 * Use ABSPATH for installation directory when installed in document root 60 == Changelog ==61 60 = 2.1.3 = 62 61 * New feature - refresh the current page in the cache -
gator-cache/trunk/gator-cache.php
r1552133 r1553194 2 2 /** 3 3 * @package Gator Cache 4 * @version 2.1. 44 * @version 2.1.5 5 5 */ 6 6 /* … … 12 12 Text Domain: gator-cache 13 13 Domain Path: /lang 14 Version: 2.1. 414 Version: 2.1.5 15 15 */ 16 16 class WpGatorCache … … 48 48 protected static $multiSiteData; 49 49 const PREFIX = 'gtr_cache'; 50 const VERSION = '2.1. 4';50 const VERSION = '2.1.5'; 51 51 const JP_MOBILE_MOD = 'minileven'; // JetPack mobile module slug 52 52 const SUPPORT_LINK = 'https://wordpress.org/support/plugin/gator-cache'; -
gator-cache/trunk/lib/GatorCachePlugin.php
r1552133 r1553194 293 293 protected function copyAdvCache($copy = true) 294 294 { 295 // get rid of object cache for now, its caches tons of transients296 if (is_file($cacheFile = WP_CONTENT_DIR . DIRECTORY_SEPARATOR . 'object-cache.php')) {295 // @depricated get rid of object cache for now, its caches tons of transients, not necessary any longer since it's not installed anymore 296 /*if (is_file($cacheFile = WP_CONTENT_DIR . DIRECTORY_SEPARATOR . 'object-cache.php')) { 297 297 @unlink($cacheFile); 298 } 298 }*/ 299 299 // @depricated allow the object cache file to be edited, just check existance 300 300 /*$sourceFile = $this->basePath . 'lib' . DIRECTORY_SEPARATOR . 'object-cache.php'; -
gator-cache/trunk/readme.txt
r1552612 r1553194 55 55 56 56 == Changelog == 57 = 2.1.5 = 58 * Redis Object Cache plugin compatiblity, fix issue with object-cache deletion. 57 59 = 2.1.4 = 58 60 * Verify compatiblity with WordPress 4.7
Note: See TracChangeset
for help on using the changeset viewer.