aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/convertors/functions_phpbb20.php
diff options
context:
space:
mode:
authorJakub Senko <jakubsenko@gmail.com>2016-03-29 21:21:35 +0200
committerJakub Senko <jakubsenko@gmail.com>2016-08-02 12:06:06 +0200
commitc64b8102b7c5dc5bd0be9d8085d01a66e90dde73 (patch)
tree7c585d4894c22bb36ce3bb8435c069bbb58fd6c7 /phpBB/install/convertors/functions_phpbb20.php
parent3d4660a703ecd8d6e0273ad183ef38a7a139c81a (diff)
downloadforums-c64b8102b7c5dc5bd0be9d8085d01a66e90dde73.tar
forums-c64b8102b7c5dc5bd0be9d8085d01a66e90dde73.tar.gz
forums-c64b8102b7c5dc5bd0be9d8085d01a66e90dde73.tar.bz2
forums-c64b8102b7c5dc5bd0be9d8085d01a66e90dde73.tar.xz
forums-c64b8102b7c5dc5bd0be9d8085d01a66e90dde73.zip
[ticket/10809] Remove MSSQL support
PHPBB3-10809
Diffstat (limited to 'phpBB/install/convertors/functions_phpbb20.php')
-rw-r--r--phpBB/install/convertors/functions_phpbb20.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/phpBB/install/convertors/functions_phpbb20.php b/phpBB/install/convertors/functions_phpbb20.php
index e8de7ef3e1..0e3ef43328 100644
--- a/phpBB/install/convertors/functions_phpbb20.php
+++ b/phpBB/install/convertors/functions_phpbb20.php
@@ -94,7 +94,6 @@ function phpbb_insert_forums()
switch ($db->get_sql_layer())
{
- case 'mssql':
case 'mssql_odbc':
case 'mssqlnative':
$db->sql_query('SET IDENTITY_INSERT ' . FORUMS_TABLE . ' ON');
@@ -294,7 +293,6 @@ function phpbb_insert_forums()
$db->sql_query("SELECT SETVAL('" . FORUMS_TABLE . "_seq',(select case when max(forum_id)>0 then max(forum_id)+1 else 1 end from " . FORUMS_TABLE . '));');
break;
- case 'mssql':
case 'mssql_odbc':
case 'mssqlnative':
$db->sql_query('SET IDENTITY_INSERT ' . FORUMS_TABLE . ' OFF');
@@ -1780,7 +1778,6 @@ function phpbb_create_userconv_table()
$map_dbms = 'mysql_41';
break;
- case 'mssql':
case 'mssql_odbc':
case 'mssqlnative':
$map_dbms = 'mssql';