diff options
| author | David M <davidmj@users.sourceforge.net> | 2007-07-28 15:16:07 +0000 |
|---|---|---|
| committer | David M <davidmj@users.sourceforge.net> | 2007-07-28 15:16:07 +0000 |
| commit | 85273d345f117bafea9e4628684eb2ee1d917fed (patch) | |
| tree | d1fbdfad048b7d9245a75ebee2beeb5d9bab4c8c /phpBB/includes/functions_install.php | |
| parent | 65fd807646e6f85664cc555aedb0c2106d6eca8b (diff) | |
| download | forums-85273d345f117bafea9e4628684eb2ee1d917fed.tar forums-85273d345f117bafea9e4628684eb2ee1d917fed.tar.gz forums-85273d345f117bafea9e4628684eb2ee1d917fed.tar.bz2 forums-85273d345f117bafea9e4628684eb2ee1d917fed.tar.xz forums-85273d345f117bafea9e4628684eb2ee1d917fed.zip | |
- allow Oracle to install without having a database name
git-svn-id: file:///svn/phpbb/trunk@7973 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_install.php')
| -rw-r--r-- | phpBB/includes/functions_install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php index 8e4e36a63d..d5994f9f98 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -258,7 +258,7 @@ function connect_check_db($error_connect, &$error, $dbms, $table_prefix, $dbhost $db->sql_return_on_error(true); // Check that we actually have a database name before going any further..... - if ($dbms['DRIVER'] != 'sqlite' && $dbname === '') + if ($dbms['DRIVER'] != 'sqlite' && $dbms['DRIVER'] != 'oracle' && $dbname === '') { $error[] = $lang['INST_ERR_DB_NO_NAME']; return false; |
