diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-24 08:34:42 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-24 08:34:42 +0000 |
| commit | 1c2d50422ada20605f7a6f027205f95349f3bbe0 (patch) | |
| tree | 77160a34c32cc0c2165c7abc4fff19b292c01a24 /roundcubemail/program | |
| parent | 5a21a5139b7e487a5ee438e38df0237e9257760a (diff) | |
Fix if/else structure
git-svn-id: https://svn.roundcube.net/trunk@5818 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc index 45fc865fa..7d1fbaab4 100644 --- a/roundcubemail/program/steps/mail/func.inc +++ b/roundcubemail/program/steps/mail/func.inc @@ -903,7 +903,7 @@ function rcmail_message_headers($attrib, $headers=NULL) else $header_value = format_date($value); } - if ($hkey == 'priority') { + else if ($hkey == 'priority') { if ($value) { $header_value = html::span('prio' . $value, rcmail_localized_priority($value)); } |
