aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_install.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/install/install_install.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/install/install_install.php')
-rwxr-xr-xphpBB/install/install_install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php
index 4be58ed157..f4fc2f298c 100755
--- a/phpBB/install/install_install.php
+++ b/phpBB/install/install_install.php
@@ -1817,7 +1817,7 @@ class install_install extends module
$sql = 'SELECT group_id
FROM ' . GROUPS_TABLE . "
- WHERE group_name = 'BOTS'";
+ WHERE group_name_clean = 'bots'";
$result = $db->sql_query($sql);
$group_id = (int) $db->sql_fetchfield('group_id');
$db->sql_freeresult($result);