diff options
author | Nils Adermann <naderman@naderman.de> | 2010-02-11 00:02:51 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2010-02-11 00:02:51 +0000 |
commit | 1802b9ff9286a7fc24493e71b3432816cbdbfcd8 (patch) | |
tree | 886dc576cb5a2be1d700372732446291479d483a /phpBB/includes/cache.php | |
parent | 6c321c53a1ebd495518738157dc3a2bf8c0701e1 (diff) | |
download | forums-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/cache.php')
-rw-r--r-- | phpBB/includes/cache.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/cache.php b/phpBB/includes/cache.php index c760c20d52..6b1e078ca4 100644 --- a/phpBB/includes/cache.php +++ b/phpBB/includes/cache.php @@ -299,6 +299,7 @@ class cache extends acm { case 'mssql': case 'mssql_odbc': + case 'mssqlnative': $sql = 'SELECT user_id, bot_agent, bot_ip FROM ' . BOTS_TABLE . ' WHERE bot_active = 1 |