-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add filter to allow cache locking to be disabled.
See #387
- Loading branch information
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This should be
if(apply_filters(__CLASS__.'_disable_cache_locking', FALSE))
so that it will continue to be supported in ZenCache; i.e. so that the mapping in ZenCache will continue to support the old Quick Cache hook names.In ZenCache, this call should be
if($this->apply_wp_filters(__CLASS__.'_disable_cache_locking', FALSE))
The same would apply to line 1837 also, where you check the same hook.