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/ucp/ucp_pm_viewfolder.php | |
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/ucp/ucp_pm_viewfolder.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_pm_viewfolder.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_viewfolder.php b/phpBB/includes/ucp/ucp_pm_viewfolder.php index e5f1bd7e29..14bc5afab9 100644 --- a/phpBB/includes/ucp/ucp_pm_viewfolder.php +++ b/phpBB/includes/ucp/ucp_pm_viewfolder.php @@ -72,7 +72,7 @@ function view_folder($id, $mode, $folder_id, $folder) continue; } - $s_folder_move_options .= '<option' . (($f_id != PRIVMSGS_INBOX) ? ' class="blue"' : '') . ' value="' . $f_id . '">'; + $s_folder_move_options .= '<option' . (($f_id != PRIVMSGS_INBOX) ? ' class="sep"' : '') . ' value="' . $f_id . '">'; $s_folder_move_options .= sprintf($user->lang['MOVE_MARKED_TO_FOLDER'], $folder_ary['folder_name']); $s_folder_move_options .= (($folder_ary['unread_messages']) ? ' [' . $folder_ary['unread_messages'] . '] ' : '') . '</option>'; } |