annotate vendor/pear/mail_mime/tests/test_Bug_20564.phpt @ 43:771f6803cc4b
default tip
somehow lost the correctly updated metadata so e.g. 'mail' package wasn't being imported
author |
Charlie Root |
date |
Sun, 26 Jan 2025 13:13:49 -0500 |
parents |
1e000243b222 |
children |
|
rev |
line source |
0
|
1 --TEST--
|
|
2 Bug #20564 Unsetting headers
|
|
3 --SKIPIF--
|
|
4 --FILE--
|
|
5 <?php
|
|
6 include("Mail/mime.php");
|
|
7
|
|
8 $mime = new Mail_mime;
|
|
9 $mime->setSubject('test');
|
|
10
|
|
11 $headers = $mime->headers(array('Subject' => null), true);
|
|
12 echo array_key_exists('Subject', $headers) ? '1' : '0';
|
|
13 --EXPECT--
|
|
14 0 |