annotate vendor/pear/mail_mime/tests/test_Bug_20273.phpt @ 16:165944ca08e7
not using these after all
author |
Charlie Root |
date |
Sat, 13 Jan 2018 09:45:02 -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>
|