aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/auth.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-07-08 15:51:43 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-07-08 15:51:43 +0000
commit7a1b091b0614050eefc7234399b0ec57eef3a8e3 (patch)
tree3f82f445a054c95c7f514873340e2e6c1a3ee283 /phpBB/includes/acp/auth.php
parent336faf2c97577fab1d69201a685b188e78b2042a (diff)
downloadforums-7a1b091b0614050eefc7234399b0ec57eef3a8e3.tar
forums-7a1b091b0614050eefc7234399b0ec57eef3a8e3.tar.gz
forums-7a1b091b0614050eefc7234399b0ec57eef3a8e3.tar.bz2
forums-7a1b091b0614050eefc7234399b0ec57eef3a8e3.tar.xz
forums-7a1b091b0614050eefc7234399b0ec57eef3a8e3.zip
correctly show roles. :o
git-svn-id: file:///svn/phpbb/trunk@7841 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/auth.php')
-rw-r--r--phpBB/includes/acp/auth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/auth.php b/phpBB/includes/acp/auth.php
index 7d0b00cc25..a7518a287c 100644
--- a/phpBB/includes/acp/auth.php
+++ b/phpBB/includes/acp/auth.php
@@ -591,7 +591,7 @@ class auth_admin extends auth
ORDER BY left_id';
$result = $db->sql_query($sql);
- $forum_names = array();
+ $forum_names = array(0 => '');
while ($row = $db->sql_fetchrow($result))
{
$forum_names[$row['forum_id']] = $row['forum_name'];