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_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_install.php')
| -rwxr-xr-x | phpBB/install/install_install.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 34bb4e9c8a..4d7a032137 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -887,11 +887,15 @@ class install_install extends module 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); |
