aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_bots.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2008-01-08 06:44:05 +0000
committerDavid M <davidmj@users.sourceforge.net>2008-01-08 06:44:05 +0000
commit370e189f156730f3ea602052737fb6995c85c23c (patch)
treedac369961ff10f5a31f6ad40318afb8702b31e4d /phpBB/includes/acp/acp_bots.php
parentb4e64655afc6279d7c64a952ee5f43fe65751c19 (diff)
downloadforums-370e189f156730f3ea602052737fb6995c85c23c.tar
forums-370e189f156730f3ea602052737fb6995c85c23c.tar.gz
forums-370e189f156730f3ea602052737fb6995c85c23c.tar.bz2
forums-370e189f156730f3ea602052737fb6995c85c23c.tar.xz
forums-370e189f156730f3ea602052737fb6995c85c23c.zip
- make viewforum work again
- remove the lower case functions, they were stupid anyway - added some indexes - added a group_name_clean column git-svn-id: file:///svn/phpbb/trunk@8315 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_bots.php')
-rw-r--r--phpBB/includes/acp/acp_bots.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_bots.php b/phpBB/includes/acp/acp_bots.php
index d08cabb062..81ac239358 100644
--- a/phpBB/includes/acp/acp_bots.php
+++ b/phpBB/includes/acp/acp_bots.php
@@ -210,7 +210,7 @@ class acp_bots
{
$sql = 'SELECT group_id, group_colour
FROM ' . GROUPS_TABLE . "
- WHERE group_name = 'BOTS'
+ WHERE group_name_clean = 'bots'
AND group_type = " . GROUP_SPECIAL;
$result = $db->sql_query($sql);
$group_row = $db->sql_fetchrow($result);