Mercurial > hg > rc1
annotate vendor/pear/mail_mime/tests/test_Bug_20273.phpt @ 55:2bf0fc326ee2
fix symlink
| author | Charlie Root |
|---|---|
| date | Wed, 08 Oct 2025 09:09:32 -0400 |
| parents | 1e000243b222 |
| children |
| rev | line source |
|---|---|
| 0 | 1 --TEST-- |
| 2 Bug #20273 Mail_mimePart::encodeHeader() and TAB character | |
| 3 --SKIPIF-- | |
| 4 --FILE-- | |
| 5 <?php | |
| 6 include("Mail/mimePart.php"); | |
| 7 | |
| 8 $refs = "<test@domain.tld>\t<test2@domain.tld>"; | |
| 9 $mime = new Mail_mimePart(); | |
| 10 echo $mime->encodeHeader('References', $refs); | |
| 11 ?> | |
| 12 --EXPECT-- | |
| 13 <test@domain.tld> <test2@domain.tld> |
