aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/convertors/functions_phpbb20.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-06-02 04:52:30 +0200
committerNils Adermann <naderman@naderman.de>2011-06-02 04:52:30 +0200
commit2159e4f28584ad795515e0c6c509f32f634e698b (patch)
tree090cb1aac28d84099034647c9602b0428489a4f0 /phpBB/install/convertors/functions_phpbb20.php
parent7da88f910399176748a92dee1a3e6577e055c1ac (diff)
parent94c28efe079c0c06cdc6ebacb49cfa4dd98d09c0 (diff)
downloadforums-2159e4f28584ad795515e0c6c509f32f634e698b.tar
forums-2159e4f28584ad795515e0c6c509f32f634e698b.tar.gz
forums-2159e4f28584ad795515e0c6c509f32f634e698b.tar.bz2
forums-2159e4f28584ad795515e0c6c509f32f634e698b.tar.xz
forums-2159e4f28584ad795515e0c6c509f32f634e698b.zip
Merge branch 'ticket/p/10039' into develop-olympus
* ticket/p/10039: [ticket/10039] Added mssqlnative cases to phpBB 2.0 converter.
Diffstat (limited to 'phpBB/install/convertors/functions_phpbb20.php')
-rw-r--r--phpBB/install/convertors/functions_phpbb20.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/install/convertors/functions_phpbb20.php b/phpBB/install/convertors/functions_phpbb20.php
index 78224dd5da..466f57a572 100644
--- a/phpBB/install/convertors/functions_phpbb20.php
+++ b/phpBB/install/convertors/functions_phpbb20.php
@@ -94,6 +94,7 @@ function phpbb_insert_forums()
{
case 'mssql':
case 'mssql_odbc':
+ case 'mssqlnative':
$db->sql_query('SET IDENTITY_INSERT ' . FORUMS_TABLE . ' ON');
break;
}
@@ -291,6 +292,7 @@ function phpbb_insert_forums()
case 'mssql':
case 'mssql_odbc':
+ case 'mssqlnative':
$db->sql_query('SET IDENTITY_INSERT ' . FORUMS_TABLE . ' OFF');
break;
@@ -1727,6 +1729,7 @@ function phpbb_create_userconv_table()
case 'mssql':
case 'mssql_odbc':
+ case 'mssqlnative':
$map_dbms = 'mssql';
break;