1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-22 19:15:33 +02:00

[ticket/11700] Correctly convert old acm type to namespaced class name

PHPBB3-11700
This commit is contained in:
Nils Adermann
2013-09-16 17:33:56 +02:00
parent 77ffd5c6ba
commit d12f358855

View File

@ -78,7 +78,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;