aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_install.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_install.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_install.php')
-rw-r--r--phpBB/install/install_install.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php
index 3c37a028cb..be6fa40566 100644
--- a/phpBB/install/install_install.php
+++ b/phpBB/install/install_install.php
@@ -1522,7 +1522,7 @@ class install_install extends module
include_once($phpbb_root_path . 'phpbb/search/fulltext_native.' . $phpEx);
// 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);
$error = false;
$search = new \phpbb\search\fulltext_native($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user);
@@ -1937,7 +1937,7 @@ class install_install extends module
$data = $this->get_submitted_data();
// 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);
$sql = 'SELECT group_id
FROM ' . GROUPS_TABLE . "
@@ -2009,7 +2009,7 @@ class install_install extends module
$data = $this->get_submitted_data();
// 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);
$user->session_begin();
$auth->login($data['admin_name'], $data['admin_pass1'], false, true, true);