aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/convertors/functions_phpbb20.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-06-02 04:53:48 +0200
committerNils Adermann <naderman@naderman.de>2011-06-02 04:53:48 +0200
commited95c7195f52b49a611a1e91c43e6ac815a4d005 (patch)
tree1822c0ca06918850d1559edfb2be626b7a96fe9c /phpBB/install/convertors/functions_phpbb20.php
parent9c04aef1532efc371555027707250d4374ca3cae (diff)
parent2159e4f28584ad795515e0c6c509f32f634e698b (diff)
downloadforums-ed95c7195f52b49a611a1e91c43e6ac815a4d005.tar
forums-ed95c7195f52b49a611a1e91c43e6ac815a4d005.tar.gz
forums-ed95c7195f52b49a611a1e91c43e6ac815a4d005.tar.bz2
forums-ed95c7195f52b49a611a1e91c43e6ac815a4d005.tar.xz
forums-ed95c7195f52b49a611a1e91c43e6ac815a4d005.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [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 1bf62476bd..9333bfe86d 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;