aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_convert.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2010-02-11 00:02:51 +0000
committerNils Adermann <naderman@naderman.de>2010-02-11 00:02:51 +0000
commit1802b9ff9286a7fc24493e71b3432816cbdbfcd8 (patch)
tree886dc576cb5a2be1d700372732446291479d483a /phpBB/includes/functions_convert.php
parent6c321c53a1ebd495518738157dc3a2bf8c0701e1 (diff)
downloadforums-1802b9ff9286a7fc24493e71b3432816cbdbfcd8.tar
forums-1802b9ff9286a7fc24493e71b3432816cbdbfcd8.tar.gz
forums-1802b9ff9286a7fc24493e71b3432816cbdbfcd8.tar.bz2
forums-1802b9ff9286a7fc24493e71b3432816cbdbfcd8.tar.xz
forums-1802b9ff9286a7fc24493e71b3432816cbdbfcd8.zip
Support for Microsoft's Native SQL Server Driver for PHP - Patch by Chris Pucci at Microsoft [Bug #57055]
If you are using SQL Server, please try to test this new dbal so we can safely include it in 3.0.8. If you want to try it on a current phpBB version you can apply the latest version of the patch to your board which you can find attached to the bug tracker ticket (look in the comments for the latest version, the one in the ticket itself is outdated): http://www.phpbb.com/bugs/phpbb3/ticket.php?ticket_id=57055 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10489 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_convert.php')
-rw-r--r--phpBB/includes/functions_convert.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/functions_convert.php b/phpBB/includes/functions_convert.php
index 8a1d07c8e5..8b3c6ea8db 100644
--- a/phpBB/includes/functions_convert.php
+++ b/phpBB/includes/functions_convert.php
@@ -1643,6 +1643,7 @@ function mass_auth($ug_type, $forum_id, $ug_id, $acl_list, $setting = ACL_NO)
case 'mssql':
case 'sqlite':
+ case 'mssqlnative':
$sql = implode(' UNION ALL ', preg_replace('#^(.*?)$#', 'SELECT \1', $sql_subary));
break;