From ccb3179c1ae04b6bd41d571f0b1f950d6fd49f13 Mon Sep 17 00:00:00 2001 From: gRoussac Date: Mon, 23 Sep 2013 18:07:46 +0200 Subject: [PATCH] [-] CORE : Partial fix for #PSCFV-10482 getCacheId is different in back office --- classes/module/Module.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/module/Module.php b/classes/module/Module.php index f3c8e73d1..c45797b98 100644 --- a/classes/module/Module.php +++ b/classes/module/Module.php @@ -1730,7 +1730,7 @@ abstract class ModuleCore { Tools::enableCache(); if ($cache_id === null) - $cache_id = Module::getCacheId($this->name); + $cache_id = $this->name; Tools::clearCache(Context::getContext()->smarty, $this->getTemplatePath($template), $cache_id, $compile_id); Tools::restoreCacheSettings(); }