From ce044161dfb2ac6555c239c1bab3307c41363f1a Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Sat, 27 Feb 2016 13:47:31 -0500 Subject: [PATCH] Fix missing backwards compatibility for $GLOBALS['quick_cache'] See websharks/comet-cache#691 --- src/includes/plugin.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/includes/plugin.php b/src/includes/plugin.php index 0529241a..ecf15d66 100644 --- a/src/includes/plugin.php +++ b/src/includes/plugin.php @@ -14,6 +14,7 @@ if (!Conflicts::check()) { $GLOBALS[GLOBAL_NS] = new Plugin(); $GLOBALS['zencache'] = $GLOBALS[GLOBAL_NS]; // Back compat. + $GLOBALS['quick_cache'] = $GLOBALS[GLOBAL_NS]; // Back compat. add_action('plugins_loaded', function() { require_once dirname(__FILE__).'/api.php';