annotate vendor/pear/mail_mime/tests/test_Bug_20273.phpt @ 45:e11491f625b0
add info action, one 7.3 -> 8.4 nit
| author |
Charlie Root |
| date |
Thu, 28 Aug 2025 10:40:29 -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>
|