fix for #126023, sending mail with an "other_header" won't work.

r/sr=bienvenu
This commit is contained in:
sspitzer%netscape.com 2002-02-17 17:17:33 +00:00
Родитель 02c4ac8cb8
Коммит c0485eac5c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -131,7 +131,7 @@ function Recipients2CompFields(msgCompFields)
case "addr_reply" : addrReply += reply_Sep + fieldValue; reply_Sep = ","; break;
case "addr_newsgroups" : addrNg += ng_Sep + fieldValue; ng_Sep = ","; break;
case "addr_followup" : addrFollow += follow_Sep + fieldValue; follow_Sep = ","; break;
case "addr_other" : addrOther += other_header + ": " + fieldValue + "\n"; break;
case "addr_other" : addrOther += sOther_header + ": " + fieldValue + "\n"; break;
}
}
i ++;