diff options
-rw-r--r-- | phpBB/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index 46d2c0bd9d..d89158d013 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -230,7 +230,7 @@ if( ( $total_categories = count($category_rows) ) ) FROM " . AUTH_ACCESS_TABLE . " aa, " . USER_GROUP_TABLE . " ug, " . GROUPS_TABLE . " g WHERE aa.auth_mod = " . TRUE . " AND g.group_single_user = 0 - AND g.group_type != " . GROUP_HIDDEN . " + AND g.group_type <> " . GROUP_HIDDEN . " AND ug.group_id = aa.group_id AND g.group_id = aa.group_id GROUP BY g.group_id, g.group_name, aa.forum_id |