From fd609f28babd75640b90a7e6fffed254ab83ad34 Mon Sep 17 00:00:00 2001 From: David M Date: Sat, 13 May 2006 02:14:59 +0000 Subject: - Firebird is people too git-svn-id: file:///svn/phpbb/trunk@5907 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/acm/acm_main.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'phpBB/includes/acm/acm_main.php') diff --git a/phpBB/includes/acm/acm_main.php b/phpBB/includes/acm/acm_main.php index f1aea8c115..9e1d8349c1 100644 --- a/phpBB/includes/acm/acm_main.php +++ b/phpBB/includes/acm/acm_main.php @@ -270,6 +270,13 @@ class cache extends acm WHERE bot_active = 1 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 STRLEN(bot_agent) DESC'; + break; // LENGTH supported by MySQL, IBM DB2 and Oracle for sure... default: -- cgit v1.2.1