summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2012-01-24 08:34:42 +0000
committerthomascube <thomas@roundcube.net>2012-01-24 08:34:42 +0000
commit567be64c28f0a83c3d0a8aaa839a2d708cf95963 (patch)
tree6cf456a7a9cb3a928ff30b47055f0deef835c496 /program
parent32afefb851dd3a93c1497a8e63ec3460430a4357 (diff)
Fix if/else structure
Diffstat (limited to 'program')
-rw-r--r--program/steps/mail/func.inc2
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));
}