aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_convert.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-05-04 10:09:37 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-05-04 10:10:12 +0200
commitb3cc20a575da12e7b66f3883dcc7f0eb6ca82ad8 (patch)
tree4bbd6c30748c06369114c1e78879bcb4df88b1a1 /phpBB/install/install_convert.php
parentda68cfb7758d5b4faeac7b725d011700f398cc10 (diff)
downloadforums-b3cc20a575da12e7b66f3883dcc7f0eb6ca82ad8.tar
forums-b3cc20a575da12e7b66f3883dcc7f0eb6ca82ad8.tar.gz
forums-b3cc20a575da12e7b66f3883dcc7f0eb6ca82ad8.tar.bz2
forums-b3cc20a575da12e7b66f3883dcc7f0eb6ca82ad8.tar.xz
forums-b3cc20a575da12e7b66f3883dcc7f0eb6ca82ad8.zip
[ticket/13782] Rename null driver to dummy for PHP7 compatibility
PHPBB3-13782
Diffstat (limited to 'phpBB/install/install_convert.php')
-rw-r--r--phpBB/install/install_convert.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php
index e268565be3..408c14e981 100644
--- a/phpBB/install/install_convert.php
+++ b/phpBB/install/install_convert.php
@@ -153,7 +153,7 @@ class install_convert extends module
unset($dbpasswd);
// We need to fill the config to let internal functions correctly work
- $config = new \phpbb\config\db($db, new \phpbb\cache\driver\null, CONFIG_TABLE);
+ $config = new \phpbb\config\db($db, new \phpbb\cache\driver\dummy, CONFIG_TABLE);
// Detect if there is already a conversion in progress at this point and offer to resume
// It's quite possible that the user will get disconnected during a large conversion so they need to be able to resume it
@@ -392,7 +392,7 @@ class install_convert extends module
$this->page_title = $lang['STAGE_SETTINGS'];
// We need to fill the config to let internal functions correctly work
- $config = new \phpbb\config\db($db, new \phpbb\cache\driver\null, CONFIG_TABLE);
+ $config = new \phpbb\config\db($db, new \phpbb\cache\driver\dummy, CONFIG_TABLE);
$convertor_tag = $request->variable('tag', '');
@@ -639,7 +639,7 @@ class install_convert extends module
unset($dbpasswd);
// We need to fill the config to let internal functions correctly work
- $config = new \phpbb\config\db($db, new \phpbb\cache\driver\null, CONFIG_TABLE);
+ $config = new \phpbb\config\db($db, new \phpbb\cache\driver\dummy, CONFIG_TABLE);
// Override a couple of config variables for the duration
$config['max_quote_depth'] = 0;