]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blob - vendor/pear/mail_mime/tests/test_Bug_12466.phpt
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / vendor / pear / mail_mime / tests / test_Bug_12466.phpt
1 --TEST--
2 Bug #12466  Content-Transfer-Encoding checking
3 --SKIPIF--
4 --FILE--
5 <?php
6 include("Mail/mime.php");
7
8 $params = array(
9     'text_encoding' => '7bit',
10     'html_encoding' => '7bit',
11 );
12 $mime = new Mail_mime($params);
13 $mime->setTXTBody("ż");
14 $mime->setHTMLBody("z");
15 $body = $mime->getMessage();
16
17 preg_match_all('/Content-Transfer-Encoding: (.*)/', $body, $m);
18 echo trim($m[1][0])."\n".trim($m[1][1]);
19
20 ?>
21 --EXPECT--
22 quoted-printable
23 7bit