diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-08 15:51:43 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-08 15:51:43 +0000 |
| commit | 7a1b091b0614050eefc7234399b0ec57eef3a8e3 (patch) | |
| tree | 3f82f445a054c95c7f514873340e2e6c1a3ee283 | |
| parent | 336faf2c97577fab1d69201a685b188e78b2042a (diff) | |
| download | forums-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
| -rw-r--r-- | phpBB/docs/CHANGELOG.html | 1 | ||||
| -rw-r--r-- | phpBB/includes/acp/auth.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 30186b8a82..39593090f0 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -224,6 +224,7 @@ p a { <li>[Fix] Some jabber related bugs (Bug #12989, #11805, #11809)</li> <li>[Fix] Added UTF-8 support for banning via the MCP (Bug #13013)</li> <li>[Fix] Properly detect the script name in session::extract_current_page() if PHP_SELF is not defined (Bug #12705) - patch provided by ToonArmy</li> + <li>[Fix] Show role mask for global permission class under Permissions->Permission Roles (Bug #13057)</li> </ul> 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']; |
