diff options
author | thomascube <thomas@roundcube.net> | 2012-01-24 08:34:42 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-01-24 08:34:42 +0000 |
commit | 567be64c28f0a83c3d0a8aaa839a2d708cf95963 (patch) | |
tree | 6cf456a7a9cb3a928ff30b47055f0deef835c496 /program/steps/mail/func.inc | |
parent | 32afefb851dd3a93c1497a8e63ec3460430a4357 (diff) |
Fix if/else structure
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 45fc865fa..7d1fbaab4 100644 --- a/program/steps/mail/func.inc +++ b/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)); } |