aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-05-24 21:47:31 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-05-24 21:47:31 +0200
commit3e88ea9c061c5f416077f54fa8f2675643a3219a (patch)
treeb9388ecb7954ba10180793b2fb511b318baafdda /phpBB/phpbb/install
parent283a039647d95e755c41b8d31307ff6202dfdf5e (diff)
parent3bafbc81ef11ee76c93eb4f21181d38b5e5c88ce (diff)
downloadforums-3e88ea9c061c5f416077f54fa8f2675643a3219a.tar
forums-3e88ea9c061c5f416077f54fa8f2675643a3219a.tar.gz
forums-3e88ea9c061c5f416077f54fa8f2675643a3219a.tar.bz2
forums-3e88ea9c061c5f416077f54fa8f2675643a3219a.tar.xz
forums-3e88ea9c061c5f416077f54fa8f2675643a3219a.zip
Merge pull request #4325 from DavidIQ/ticket/14591
[ticket/14591] Use the correct delimiter for MSSQL
Diffstat (limited to 'phpBB/phpbb/install')
-rw-r--r--phpBB/phpbb/install/helper/database.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/install/helper/database.php b/phpBB/phpbb/install/helper/database.php
index c4c90a01a4..b8422fc1ed 100644
--- a/phpBB/phpbb/install/helper/database.php
+++ b/phpBB/phpbb/install/helper/database.php
@@ -58,7 +58,7 @@ class database
'LABEL' => 'MS SQL Server 2000+',
'SCHEMA' => 'mssql',
'MODULE' => 'mssql',
- 'DELIM' => 'GO',
+ 'DELIM' => ';',
'DRIVER' => 'phpbb\db\driver\mssql',
'AVAILABLE' => true,
'2.0.x' => true,
@@ -67,7 +67,7 @@ class database
'LABEL' => 'MS SQL Server [ ODBC ]',
'SCHEMA' => 'mssql',
'MODULE' => 'odbc',
- 'DELIM' => 'GO',
+ 'DELIM' => ';',
'DRIVER' => 'phpbb\db\driver\mssql_odbc',
'AVAILABLE' => true,
'2.0.x' => true,
@@ -76,7 +76,7 @@ class database
'LABEL' => 'MS SQL Server 2005+ [ Native ]',
'SCHEMA' => 'mssql',
'MODULE' => 'sqlsrv',
- 'DELIM' => 'GO',
+ 'DELIM' => ';',
'DRIVER' => 'phpbb\db\driver\mssqlnative',
'AVAILABLE' => true,
'2.0.x' => false,