diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-11-11 09:14:48 -0800 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-11-11 09:14:48 -0800 |
commit | 4bd078e00fd5994e7fbe0e65b00fa93d082ac383 (patch) | |
tree | 899dd8887b5560d7fa66e9462a48cf86f4603c78 /phpBB/phpbb/di | |
parent | fea933e2e9faca213e14fcbc944d4fc5fc2123e1 (diff) | |
parent | 31e60f0c8d5e248bbf318cec410b27cff6dbee74 (diff) | |
download | forums-4bd078e00fd5994e7fbe0e65b00fa93d082ac383.tar forums-4bd078e00fd5994e7fbe0e65b00fa93d082ac383.tar.gz forums-4bd078e00fd5994e7fbe0e65b00fa93d082ac383.tar.bz2 forums-4bd078e00fd5994e7fbe0e65b00fa93d082ac383.tar.xz forums-4bd078e00fd5994e7fbe0e65b00fa93d082ac383.zip |
Merge pull request #1862 from nickvergessen/ticket/11949
[ticket/11949] Do not prepend leading backslash to cache class name
Diffstat (limited to 'phpBB/phpbb/di')
-rw-r--r-- | phpBB/phpbb/di/extension/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/di/extension/config.php b/phpBB/phpbb/di/extension/config.php index 5fcb2d6f10..2603e7b358 100644 --- a/phpBB/phpbb/di/extension/config.php +++ b/phpBB/phpbb/di/extension/config.php @@ -70,7 +70,7 @@ class config extends Extension { if (preg_match('#^[a-z]+$#', $acm_type)) { - return '\\phpbb\cache\driver\\'.$acm_type; + return 'phpbb\\cache\\driver\\' . $acm_type; } return $acm_type; |