From 6382522bb0090e004c66f6a42b74ec6431a12d5d Mon Sep 17 00:00:00 2001 From: fallas Date: Tue, 30 Oct 2001 16:12:49 +0000 Subject: [PATCH] Resumed emails now don't put <> around emails. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1658 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/draft_actions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/draft_actions.php b/src/draft_actions.php index 0a91cf0e..a8d145e7 100644 --- a/src/draft_actions.php +++ b/src/draft_actions.php @@ -13,9 +13,9 @@ require_once ('../src/validate.php'); static $header, $headerlength; if ($header == '') { - $to = expandAddrs(parseAddrs($t)); - $cc = expandAddrs(parseAddrs($c)); - $bcc = expandAddrs(parseAddrs($b)); + $to = parseAddrs($t); + $cc = parseAddrs($c); + $bcc = parseAddrs($b); if (isset($identity) && ($identity != 'default')) { $reply_to = getPref($data_dir, $username, 'reply_to' . $identity); $from = getPref($data_dir, $username, 'full_name' . $identity); -- 2.25.1