diff options
author | David M <davidmj@users.sourceforge.net> | 2006-04-18 21:06:00 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-04-18 21:06:00 +0000 |
commit | a8e11e22649ccef938d36826212855989c4a6ff3 (patch) | |
tree | c4273afdee54b3c596833b6781adcd75cce62351 /phpBB/install/install.php | |
parent | fcd3d18fb31d25d38211c16dcd781a6c19e616bc (diff) | |
download | forums-a8e11e22649ccef938d36826212855989c4a6ff3.tar forums-a8e11e22649ccef938d36826212855989c4a6ff3.tar.gz forums-a8e11e22649ccef938d36826212855989c4a6ff3.tar.bz2 forums-a8e11e22649ccef938d36826212855989c4a6ff3.tar.xz forums-a8e11e22649ccef938d36826212855989c4a6ff3.zip |
- Forgot to remove a lang string
- Firebird!
- Fixes for mssql and mssql-odbc
git-svn-id: file:///svn/phpbb/trunk@5800 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install.php')
-rw-r--r-- | phpBB/install/install.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php index bf8651f62f..5c5619b066 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -1111,11 +1111,15 @@ if ($stage == 3) case 'mssql': case 'mssql_odbc': $sql_query = preg_replace('#\# MSSQL IDENTITY (phpbb_[a-z_]+) (ON|OFF) \##s', 'SET IDENTITY_INSERT \1 \2', $sql_query); - break; + break; case 'postgres': $sql_query = preg_replace('#\# POSTGRES (BEGIN|COMMIT) \##s', '\1; ', $sql_query); - break; + break; + + case 'firebird': + $sql_query = str_replace('module_name', '"module_name"', $sql_query); + break; default: //$sql_query = preg_replace('#\# MSSQL IDENTITY (phpbb_[a-z_]+) (ON|OFF) \##s', '', $sql_query); |