Browse Source

Fix alternate identities matching on reply

pdontthink 16 years ago
parent
commit
50826fb554
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/compose.php

+ 2 - 1
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;
             }