From db0a71d69917f2cb8e3b389d8fef3307ebc71f3e Mon Sep 17 00:00:00 2001 From: Sam Hemelryk Date: Fri, 9 Nov 2012 15:41:42 +1300 Subject: [PATCH] MDL-34342 cache: fixed issue within string cache key --- lib/moodlelib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/moodlelib.php b/lib/moodlelib.php index 960442d53e5..4b54f370327 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -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);