aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_pm.php
diff options
context:
space:
mode:
authorVic D'Elfant <vic@phpbb.com>2007-04-12 12:54:57 +0000
committerVic D'Elfant <vic@phpbb.com>2007-04-12 12:54:57 +0000
commitf0868d37dfd73df6c2dfd76362af6c09b6b49a5f (patch)
tree4eceac6dd6a24542b97650321f08d011c4a92720 /phpBB/includes/ucp/ucp_pm.php
parent07a5ab8713eadda9c57d8b7296442d53b1c03d6c (diff)
downloadforums-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/ucp/ucp_pm.php')
-rw-r--r--phpBB/includes/ucp/ucp_pm.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_pm.php b/phpBB/includes/ucp/ucp_pm.php
index b1f016e149..73bb3411cd 100644
--- a/phpBB/includes/ucp/ucp_pm.php
+++ b/phpBB/includes/ucp/ucp_pm.php
@@ -340,7 +340,7 @@ class ucp_pm
$s_folder_options = $s_to_folder_options = '';
foreach ($folder as $f_id => $folder_ary)
{
- $option = '<option' . ((!in_array($f_id, array(PRIVMSGS_INBOX, PRIVMSGS_OUTBOX, PRIVMSGS_SENTBOX))) ? ' class="blue"' : '') . ' value="' . $f_id . '"' . (($f_id == $folder_id) ? ' selected="selected"' : '') . '>' . $folder_ary['folder_name'] . (($folder_ary['unread_messages']) ? ' [' . $folder_ary['unread_messages'] . '] ' : '') . '</option>';
+ $option = '<option' . ((!in_array($f_id, array(PRIVMSGS_INBOX, PRIVMSGS_OUTBOX, PRIVMSGS_SENTBOX))) ? ' class="sep"' : '') . ' value="' . $f_id . '"' . (($f_id == $folder_id) ? ' selected="selected"' : '') . '>' . $folder_ary['folder_name'] . (($folder_ary['unread_messages']) ? ' [' . $folder_ary['unread_messages'] . '] ' : '') . '</option>';
$s_to_folder_options .= ($f_id != PRIVMSGS_OUTBOX && $f_id != PRIVMSGS_SENTBOX) ? $option : '';
$s_folder_options .= $option;