MDL-34342 cache: fixed issue within string cache key

This commit is contained in:
Sam Hemelryk
2012-11-09 10:48:39 +08:00
committed by Dan Poltawski
parent 1f9041e42a
commit db0a71d699
+1 -1
View File
@@ -6537,7 +6537,7 @@ class core_string_manager implements string_manager {
$component = $plugintype . '_' . $pluginname;
}
$cachekey = $lang.'/'.$component;
$cachekey = $lang.'_'.$component;
if (!$disablecache and !$disablelocal) {
$string = $this->cache->get($cachekey);