Browse Source

fixed i18n bug reported to -translations by J.I. Kim and forwarded to -devel by Philippe on nov 14th

teepe 24 years ago
parent
commit
4039072502
1 changed files with 1 additions and 1 deletions
  1. 1 1
      functions/mailbox_display.php

+ 1 - 1
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);