X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FExtension%2FMapper.php;h=38ff7d1951b78812ad7790f25547ecffd6c691b9;hb=8d785b7a483ce7cf0099435dae7a86c791537bbd;hp=8615513566bbc5fa9e738fca291139cce5849c39;hpb=edae2a2c7bc01f231eb72a9f385d133d757c1bec;p=civicrm-core.git diff --git a/CRM/Extension/Mapper.php b/CRM/Extension/Mapper.php index 8615513566..38ff7d1951 100644 --- a/CRM/Extension/Mapper.php +++ b/CRM/Extension/Mapper.php @@ -282,7 +282,7 @@ class CRM_Extension_Mapper { $moduleExtensions = NULL; if ($this->cache && !$fresh) { - $moduleExtensions = $this->cache->get($this->cacheKey . '/moduleFiles'); + $moduleExtensions = $this->cache->get($this->cacheKey . '_moduleFiles'); } if (!is_array($moduleExtensions)) { @@ -315,7 +315,7 @@ class CRM_Extension_Mapper { } if ($this->cache) { - $this->cache->set($this->cacheKey . '/moduleFiles', $moduleExtensions); + $this->cache->set($this->cacheKey . '_moduleFiles', $moduleExtensions); } } return $moduleExtensions; @@ -461,7 +461,7 @@ class CRM_Extension_Mapper { $this->infos = array(); $this->moduleExtensions = NULL; if ($this->cache) { - $this->cache->delete($this->cacheKey . '/moduleFiles'); + $this->cache->delete($this->cacheKey . '_moduleFiles'); } // FIXME: How can code so code wrong be so right? CRM_Extension_System::singleton()->getClassLoader()->refresh();