diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2015-07-07 19:16:58 +0200 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2015-07-08 01:28:11 +0200 |
commit | 5ad0af3d3df698f7c749fee1f65962e0ba3cf663 (patch) | |
tree | 8ae4423d79bf4002865cc5f238c870fe13fe41f6 /phpBB/phpbb/install/helper/database.php | |
parent | 8bfd29e86dac675919d3572aac3ba5891d9d844e (diff) | |
download | forums-5ad0af3d3df698f7c749fee1f65962e0ba3cf663.tar forums-5ad0af3d3df698f7c749fee1f65962e0ba3cf663.tar.gz forums-5ad0af3d3df698f7c749fee1f65962e0ba3cf663.tar.bz2 forums-5ad0af3d3df698f7c749fee1f65962e0ba3cf663.tar.xz forums-5ad0af3d3df698f7c749fee1f65962e0ba3cf663.zip |
[ticket/13740] Fixes and Tests for database helper
PHPBB3-13740
Diffstat (limited to 'phpBB/phpbb/install/helper/database.php')
-rw-r--r-- | phpBB/phpbb/install/helper/database.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/helper/database.php b/phpBB/phpbb/install/helper/database.php index 38823c1231..d8751582f7 100644 --- a/phpBB/phpbb/install/helper/database.php +++ b/phpBB/phpbb/install/helper/database.php @@ -43,7 +43,8 @@ class database */ public function __construct(\phpbb\filesystem\filesystem_interface $filesystem, $phpbb_root_path) { - $this->filesystem = $filesystem; + $this->filesystem = $filesystem; + $this->phpbb_root_path = $phpbb_root_path; // DBMS supported by phpBB $this->supported_dbms = array( |