From: pdontthink Date: Wed, 15 Oct 2008 20:18:01 +0000 (+0000) Subject: Fix alternate identities matching on reply X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=bc07287b2e95dd9c3f2a64ff2285193f302afd48;p=squirrelmail.git 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 --- 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; }