diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-11-17 00:24:32 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-11-17 00:24:32 +0100 |
commit | 5bc0f4b3d49ed1bea45464beece42906646eb026 (patch) | |
tree | 947a9f33ad697d821798c042adf28aa8972340c9 /phpBB/install/convertors/convert_phpbb20.php | |
parent | 8f8a7f76374679d2f893245c1f607a3b2db56a9a (diff) | |
download | forums-5bc0f4b3d49ed1bea45464beece42906646eb026.tar forums-5bc0f4b3d49ed1bea45464beece42906646eb026.tar.gz forums-5bc0f4b3d49ed1bea45464beece42906646eb026.tar.bz2 forums-5bc0f4b3d49ed1bea45464beece42906646eb026.tar.xz forums-5bc0f4b3d49ed1bea45464beece42906646eb026.zip |
[ticket/11015] Move db driver class name fixing to function
PHPBB3-11015
Diffstat (limited to 'phpBB/install/convertors/convert_phpbb20.php')
-rw-r--r-- | phpBB/install/convertors/convert_phpbb20.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/install/convertors/convert_phpbb20.php b/phpBB/install/convertors/convert_phpbb20.php index 68acea02b3..5f30625980 100644 --- a/phpBB/install/convertors/convert_phpbb20.php +++ b/phpBB/install/convertors/convert_phpbb20.php @@ -24,6 +24,8 @@ if (!defined('IN_PHPBB')) include($phpbb_root_path . 'config.' . $phpEx); unset($dbpasswd); +$dbms = phpbb_convert_30_dbms_to_31($dbms); + /** * $convertor_data provides some basic information about this convertor which is * used on the initial list of convertors and to populate the default settings |