summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-01-24 08:34:42 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-01-24 08:34:42 +0000
commit1c2d50422ada20605f7a6f027205f95349f3bbe0 (patch)
tree77160a34c32cc0c2165c7abc4fff19b292c01a24 /roundcubemail/program/steps
parent5a21a5139b7e487a5ee438e38df0237e9257760a (diff)
Fix if/else structure
git-svn-id: https://svn.roundcube.net/trunk@5818 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
-rw-r--r--roundcubemail/program/steps/mail/func.inc2
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));
}