diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-04-22 07:12:42 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-04-22 07:12:42 +0000 |
| commit | 40eb3b11538be0a46ec02007270d49a6da4b2f0e (patch) | |
| tree | 9e12fd02322f5a437750c54c91c0fc3b1ed14366 /roundcubemail/program/include/main.inc | |
| parent | 4caf2f6635018a3b6616f2d60b7a60a6332b4126 (diff) | |
- make sure INBOX is allways displayed as Inbox (per recent discussion)
git-svn-id: https://svn.roundcube.net/trunk@3525 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/main.inc')
| -rw-r--r-- | roundcubemail/program/include/main.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index 1dbf0d406..535fde18b 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/program/include/main.inc @@ -1459,15 +1459,15 @@ function rcmail_folder_classname($folder_id) { global $CONFIG; + if ($folder_id == 'INBOX') + return 'inbox'; + // for these mailboxes we have localized labels and css classes foreach (array('sent', 'drafts', 'trash', 'junk') as $smbx) { if ($folder_id == $CONFIG[$smbx.'_mbox']) return $smbx; } - - if ($folder_id == 'INBOX') - return 'inbox'; } |
