1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

Fixes #1646 - Never cache TinyMce configuration.

This commit is contained in:
Cameron
2016-05-11 19:20:23 -07:00
parent 42246f7381
commit a29e242ca5

View File

@@ -1416,7 +1416,7 @@ class e_jsmanager
*/ */
private function addCache($type,$path) 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; return false;
} }