Hacked By AnonymousFox

Current Path : /opt/alt/php54/usr/share/pear/test/Mail_Mime/tests/
Upload File :
Current File : //opt/alt/php54/usr/share/pear/test/Mail_Mime/tests/test_Bug_21098.phpt

--TEST--
Bug #21098  Handling of empty plain text parts
--SKIPIF--
--FILE--
<?php
include "Mail/mime.php";

$mime = new Mail_mime();
$mime->setTxtBody('');
$mime->setHTMLBody('<html></html>');

$headers1 = $mime->txtHeaders();
$body     = $mime->get();
$headers2 = $mime->txtHeaders();
print strpos($headers1, 'text/html') && strpos($headers2, 'text/html') ? 'OK' : 'NOT OK';
--EXPECT--
OK

Hacked By AnonymousFox1.0, Coded By AnonymousFox