annotate vendor/pear/mail_mime/tests/test_Bug_20564.phpt @ 41:d2414df68d78
Updated by Alex S Grebenschikov (www.poralix.com)
to make it compatible with RoundCube 1.3.0
author |
Charlie Root |
date |
Fri, 24 Jan 2025 14:20:15 -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 |