aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/install.php')
-rw-r--r--phpBB/install/install.php8
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);