From a29e242ca555f9d8c7b0448c8e69c32a02469dbd Mon Sep 17 00:00:00 2001 From: Cameron Date: Wed, 11 May 2016 19:20:23 -0700 Subject: [PATCH] Fixes #1646 - Never cache TinyMce configuration. --- e107_handlers/js_manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/js_manager.php b/e107_handlers/js_manager.php index 3649bdcb8..43aa2a510 100644 --- a/e107_handlers/js_manager.php +++ b/e107_handlers/js_manager.php @@ -1416,7 +1416,7 @@ class e_jsmanager */ private function addCache($type,$path) { - if($this->_cache_enabled != true || $this->isInAdmin() || substr($path,0,2) == '//' ) + if($this->_cache_enabled != true || $this->isInAdmin() || substr($path,0,2) == '//' || strpos($path, 'wysiwyg.php')!==false ) { return false; }