aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cache
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-06-22 23:41:14 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-06-22 23:41:14 +0200
commit4f2acbaed2028cc1b5ad96f6eada97b1cc94532f (patch)
treef42989ea54dd5e75b3a9eb76c476acb4df861025 /phpBB/phpbb/cache
parentde04304e94c428afd6dcb9f42b215ebbb6cc14d2 (diff)
parentdc7ed58bf5be6b3228389f414634f0a4116c6278 (diff)
downloadforums-4f2acbaed2028cc1b5ad96f6eada97b1cc94532f.tar
forums-4f2acbaed2028cc1b5ad96f6eada97b1cc94532f.tar.gz
forums-4f2acbaed2028cc1b5ad96f6eada97b1cc94532f.tar.bz2
forums-4f2acbaed2028cc1b5ad96f6eada97b1cc94532f.tar.xz
forums-4f2acbaed2028cc1b5ad96f6eada97b1cc94532f.zip
Merge pull request #2629 from nickvergessen/ticket/12747
[ticket/12747] Drop support for Firebird * nickvergessen/ticket/12747: [ticket/12747] Remove some methods which are not used anymore [ticket/12747] Drop support for Firebird Conflicts: phpBB/phpbb/db/driver/firebird.php
Diffstat (limited to 'phpBB/phpbb/cache')
-rw-r--r--phpBB/phpbb/cache/service.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/phpBB/phpbb/cache/service.php b/phpBB/phpbb/cache/service.php
index c9aa6525c0..e47177758a 100644
--- a/phpBB/phpbb/cache/service.php
+++ b/phpBB/phpbb/cache/service.php
@@ -316,13 +316,6 @@ class service
ORDER BY LEN(bot_agent) DESC';
break;
- case 'firebird':
- $sql = 'SELECT user_id, bot_agent, bot_ip
- FROM ' . BOTS_TABLE . '
- WHERE bot_active = 1
- ORDER BY CHAR_LENGTH(bot_agent) DESC';
- break;
-
// LENGTH supported by MySQL, IBM DB2 and Oracle for sure...
default:
$sql = 'SELECT user_id, bot_agent, bot_ip