diff options
author | svncommit <devs@roundcube.net> | 2005-10-20 17:33:39 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2005-10-20 17:33:39 +0000 |
commit | 1038d554e41b4007461a0c74a89625fd03107f7f (patch) | |
tree | 1acc288e35facd1d23bb1afe301697045a6a10f3 /program/steps/mail | |
parent | 53560c521e594d6047f58a25ccbc266c56bbcf05 (diff) |
various fixes for correct catalan/spanish display
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 4 |
1 files changed, 2 insertions, 2 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++; } |