diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-07-26 16:58:18 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-07-26 17:02:07 +0200 |
commit | a9c10a480ce10ebecd9f83e4c362729872f08678 (patch) | |
tree | 35913491b2c8d6f71f457028f8c6925fbc6db568 /phpBB/includes/functions_install.php | |
parent | 5a548fa3442b0f63e1c2ff892b93335487cd616c (diff) | |
download | forums-a9c10a480ce10ebecd9f83e4c362729872f08678.tar forums-a9c10a480ce10ebecd9f83e4c362729872f08678.tar.gz forums-a9c10a480ce10ebecd9f83e4c362729872f08678.tar.bz2 forums-a9c10a480ce10ebecd9f83e4c362729872f08678.tar.xz forums-a9c10a480ce10ebecd9f83e4c362729872f08678.zip |
[feature/dic] Generate full cache driver class name on fresh install
PHPBB3-10739
Diffstat (limited to 'phpBB/includes/functions_install.php')
-rw-r--r-- | phpBB/includes/functions_install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php index 46541acd44..a6af69cfac 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -540,7 +540,7 @@ function phpbb_create_config_file_data($data, $dbms, $load_extensions, $debug = 'dbuser' => $data['dbuser'], 'dbpasswd' => htmlspecialchars_decode($data['dbpasswd']), 'table_prefix' => $data['table_prefix'], - 'acm_type' => 'file', + 'acm_type' => 'phpbb_cache_driver_file', 'load_extensions' => $load_extensions, ); |