aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/di/processor/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/di/processor/config.php')
-rw-r--r--phpBB/includes/di/processor/config.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/di/processor/config.php b/phpBB/includes/di/processor/config.php
index 45b750c31e..1a5ec15854 100644
--- a/phpBB/includes/di/processor/config.php
+++ b/phpBB/includes/di/processor/config.php
@@ -52,7 +52,8 @@ class phpbb_di_processor_config implements phpbb_di_processor_interface
protected function fix_acm_type($acm_type)
{
- if (preg_match('#^[a-z]+$#', $acm_type)) {
+ if (preg_match('#^[a-z]+$#', $acm_type))
+ {
return 'phpbb_cache_driver_'.$acm_type;
}