aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_convert.php
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2015-05-04 11:16:33 +0200
committerTristan Darricau <tristan.darricau@sensiolabs.com>2015-05-04 11:16:33 +0200
commit1a42ec64c87e5b67fcb3d8716d9f89e928c365c4 (patch)
tree4e888091b4e304e9d5c6970218daa8548d2a90c1 /phpBB/install/install_convert.php
parent98546a738bcdef318c0b1850ae7d04abc2927786 (diff)
parent292d0ab382563143082bd8809ec189d646a31e0e (diff)
downloadforums-1a42ec64c87e5b67fcb3d8716d9f89e928c365c4.tar
forums-1a42ec64c87e5b67fcb3d8716d9f89e928c365c4.tar.gz
forums-1a42ec64c87e5b67fcb3d8716d9f89e928c365c4.tar.bz2
forums-1a42ec64c87e5b67fcb3d8716d9f89e928c365c4.tar.xz
forums-1a42ec64c87e5b67fcb3d8716d9f89e928c365c4.zip
Merge pull request #3589 from marc1706/ticket/13782
[ticket/13782] Rename classes that use reserved PHP7 keywords
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;