From bc07287b2e95dd9c3f2a64ff2285193f302afd48 Mon Sep 17 00:00:00 2001 From: pdontthink Date: Wed, 15 Oct 2008 20:18:01 +0000 Subject: [PATCH] Fix alternate identities matching on reply git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13306 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/compose.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/compose.php b/src/compose.php index 8ff63932..37a2887c 100644 --- a/src/compose.php +++ b/src/compose.php @@ -845,7 +845,8 @@ function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $se $enc_from_name = '"'.$data['full_name'].'" <'. $data['email_address'].'>'; if(strtolower($enc_from_name) == strtolower($orig_from)) { $identity = $nr; - break; + // don't stop! need to build $identities array for idents match below + //break; } $identities[] = $enc_from_name; } -- 2.25.1