1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-24 18:41:52 +02:00

correctly show roles. :o

git-svn-id: file:///svn/phpbb/trunk@7841 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-07-08 15:51:43 +00:00
parent 336faf2c97
commit 7a1b091b06
2 changed files with 2 additions and 1 deletions

View File

@@ -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>

View File

@@ -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'];