annotate vendor/pear/mail_mime/tests/test_Bug_20273.phpt @ 25:4b2bc456ce42
threaded dates sort working
| author |
Charlie Root |
| date |
Thu, 18 Jan 2018 07:54:45 -0500 |
| 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>
|