From 3dd96399a3f8fe246a220325668c49ee40077c83 Mon Sep 17 00:00:00 2001 From: teepe Date: Wed, 14 Nov 2001 16:09:56 +0000 Subject: [PATCH] fixed i18n bug reported to -translations by J.I. Kim and forwarded to -devel by Philippe on nov 14th git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1752 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 5a36afb3..5eb01722 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -38,7 +38,7 @@ } $msg = $msgs[$key]; - $senderName = htmlentities(sqimap_find_displayable_name($msg['FROM'])); + $senderName = htmlspecialchars(sqimap_find_displayable_name($msg['FROM'])); if( $mailbox == _("None") ) { // $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); $boxes = sqimap_mailbox_list($imapConnection); -- 2.25.1