From 2229a3ae504ba005fca71bef2c3111e28050e1b6 Mon Sep 17 00:00:00 2001 From: kink Date: Mon, 25 Jun 2007 15:22:27 +0000 Subject: [PATCH] fix switch of en/decode in mdn, thanks Masato HIGASHIYAMA (#1694687) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12465 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read_body.php b/src/read_body.php index 1fb0ab64..e737e129 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -142,7 +142,7 @@ function SendMDN ( $mailbox, $passed_id, $message, $imapConnection) { } $rfc822_header->content_type = $content_type; $rfc822_header->to[] = $header->dnt; - $rfc822_header->subject = _("Read:") . ' ' . encodeHeader($header->subject); + $rfc822_header->subject = _("Read:") . ' ' . decodeHeader($header->subject,true,false); $idents = get_identities(); $needles = array(); -- 2.25.1