diff options
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/func.inc | 4 | ||||
-rw-r--r-- | program/steps/settings/edit_identity.inc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 01b02bbdd..c0b303a62 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -251,7 +251,7 @@ function rcmail_message_list($attrib) $out .= "<thead><tr>\n<td class=\"icon\"> </td>\n"; foreach ($a_show_cols as $col) - $out .= '<td class="'.$col.'">' . rcube_label($col) . "</td>\n"; + $out .= '<td class="'.$col.'">' . rep_specialchars_output(rcube_label($col)) . "</td>\n"; $out .= '<td class="icon">'.($attrib['attachmenticon'] ? sprintf($image_tag, $skin_path, $attrib['attachmenticon'], '') : '')."</td>\n"; $out .= "</tr></thead>\n<tbody>\n"; @@ -813,7 +813,7 @@ function rcmail_message_headers($attrib, $headers=NULL) $header_value = rep_specialchars_output($IMAP->decode_header($headers[$hkey]), '', 'all'); $out .= "\n<tr>\n"; - $out .= '<td class="header-title">'.rcube_label($hkey).": </td>\n"; + $out .= '<td class="header-title">'.rep_specialchars_output(rcube_label($hkey)).": </td>\n"; $out .= '<td class="'.$hkey.'" width="90%">'.$header_value."</td>\n</tr>"; $header_count++; } diff --git a/program/steps/settings/edit_identity.inc b/program/steps/settings/edit_identity.inc index f9cbc7c96..e0f649cdc 100644 --- a/program/steps/settings/edit_identity.inc +++ b/program/steps/settings/edit_identity.inc @@ -88,7 +88,7 @@ function rcube_identity_form($attrib) $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", $attrib['id'], - rcube_label($label), + rep_specialchars_output(rcube_label($label)), $value); } |