TimeTrex/vendor/pear/mail_mime/tests/test_Bug_20564.phpt

14 lines
270 B
Plaintext
Raw Normal View History

2022-12-13 07:10:06 +01:00
--TEST--
Bug #20564 Unsetting headers
--SKIPIF--
--FILE--
<?php
include("Mail/mime.php");
$mime = new Mail_mime;
$mime->setSubject('test');
$headers = $mime->headers(array('Subject' => null), true);
echo array_key_exists('Subject', $headers) ? '1' : '0';
--EXPECT--
0