From 48cb84d6a5d063ea2d178090b75a726a5bed224e Mon Sep 17 00:00:00 2001 From: centaurix Date: Tue, 21 May 2002 09:34:24 +0000 Subject: [PATCH] fixed bug 556997 introduced by the imap-utf7 patch (applied from me) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2848 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 3c412693..dd0aa617 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -674,8 +674,7 @@ function mail_message_listing_beginning ($imapConnection, $moveURL, foreach ($boxes as $boxes_part) { if (!in_array('noselect', $boxes_part['flags'])) { $box = $boxes_part['unformatted']; - $box2 = imap_utf7_decode_local( - str_replace(' ', ' ', $boxes_part['unformatted-disp'])); + $box2 = str_replace(' ', ' ', imap_utf7_decode_local($boxes_part['unformatted-disp'])); if( $box2 == 'INBOX' ) { $box2 = _("INBOX"); } -- 2.25.1