diff options
author | Vic D'Elfant <vic@phpbb.com> | 2007-04-12 12:54:57 +0000 |
---|---|---|
committer | Vic D'Elfant <vic@phpbb.com> | 2007-04-12 12:54:57 +0000 |
commit | f0868d37dfd73df6c2dfd76362af6c09b6b49a5f (patch) | |
tree | 4eceac6dd6a24542b97650321f08d011c4a92720 /phpBB/includes/acp | |
parent | 07a5ab8713eadda9c57d8b7296442d53b1c03d6c (diff) | |
download | forums-f0868d37dfd73df6c2dfd76362af6c09b6b49a5f.tar forums-f0868d37dfd73df6c2dfd76362af6c09b6b49a5f.tar.gz forums-f0868d37dfd73df6c2dfd76362af6c09b6b49a5f.tar.bz2 forums-f0868d37dfd73df6c2dfd76362af6c09b6b49a5f.tar.xz forums-f0868d37dfd73df6c2dfd76362af6c09b6b49a5f.zip |
- Bug #9791
- Replaced .blue class with the .sep class to keep things consistent
git-svn-id: file:///svn/phpbb/trunk@7329 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp')
-rw-r--r-- | phpBB/includes/acp/acp_attachments.php | 4 | ||||
-rw-r--r-- | phpBB/includes/acp/acp_permissions.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acp/acp_attachments.php b/phpBB/includes/acp/acp_attachments.php index 9ee0d0e7be..adaf39a8c5 100644 --- a/phpBB/includes/acp/acp_attachments.php +++ b/phpBB/includes/acp/acp_attachments.php @@ -775,11 +775,11 @@ class acp_attachments { $cat_right = max($cat_right, $row['right_id']); - $holding .= '<option value="' . $row['forum_id'] . '"' . (($row['forum_type'] == FORUM_POST) ? ' class="blue"' : '') . $selected . '>' . $padding . $row['forum_name'] . '</option>'; + $holding .= '<option value="' . $row['forum_id'] . '"' . (($row['forum_type'] == FORUM_POST) ? ' class="sep"' : '') . $selected . '>' . $padding . $row['forum_name'] . '</option>'; } else { - $s_forum_id_options .= $holding . '<option value="' . $row['forum_id'] . '"' . (($row['forum_type'] == FORUM_POST) ? ' class="blue"' : '') . $selected . '>' . $padding . $row['forum_name'] . '</option>'; + $s_forum_id_options .= $holding . '<option value="' . $row['forum_id'] . '"' . (($row['forum_type'] == FORUM_POST) ? ' class="sep"' : '') . $selected . '>' . $padding . $row['forum_name'] . '</option>'; $holding = ''; } } diff --git a/phpBB/includes/acp/acp_permissions.php b/phpBB/includes/acp/acp_permissions.php index 6102088c8f..4a1f209ea0 100644 --- a/phpBB/includes/acp/acp_permissions.php +++ b/phpBB/includes/acp/acp_permissions.php @@ -826,7 +826,7 @@ class acp_permissions $l_ug_list = ''; while ($row = $db->sql_fetchrow($result)) { - $l_ug_list .= (($l_ug_list != '') ? ', ' : '') . ((isset($row['group_type']) && $row['group_type'] == GROUP_SPECIAL) ? '<span class="blue">' . $user->lang['G_' . $row['name']] . '</span>' : $row['name']); + $l_ug_list .= (($l_ug_list != '') ? ', ' : '') . ((isset($row['group_type']) && $row['group_type'] == GROUP_SPECIAL) ? '<span class="sep">' . $user->lang['G_' . $row['name']] . '</span>' : $row['name']); } $db->sql_freeresult($result); |