diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2003-06-13 16:45:07 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2003-06-13 16:45:07 +0000 |
commit | fc82dab423007ff9237033229acf88778537c0b7 (patch) | |
tree | cab8c92312b296d5911bdf44606dedb2775eb53b /phpBB/install | |
parent | dee0f40fd2b27f441c2f4b60382c7985b9f0789d (diff) | |
download | forums-fc82dab423007ff9237033229acf88778537c0b7.tar forums-fc82dab423007ff9237033229acf88778537c0b7.tar.gz forums-fc82dab423007ff9237033229acf88778537c0b7.tar.bz2 forums-fc82dab423007ff9237033229acf88778537c0b7.tar.xz forums-fc82dab423007ff9237033229acf88778537c0b7.zip |
deleting the constructor means refining the init call. ;)
git-svn-id: file:///svn/phpbb/trunk@4120 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/install.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php index 693fb55a0c..ae742cc6e7 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -576,7 +576,8 @@ else include($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx); // Instantiate the database - $db = new sql_db($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false); + $db = new sql_db(); + $db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false); // Load the appropriate schema and basic data $dbms_schema = 'schemas/' . $available_dbms[$dbms]['SCHEMA'] . '_schema.sql'; |