浏览代码

Fix alternate identities matching on reply

pdontthink 16 年之前
父节点
当前提交
50826fb554
共有 1 个文件被更改,包括 2 次插入1 次删除
  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;
             }