PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Mail » Mail_Mime » Bug #5062

'=' not handled properly

Details

Submitted2005-08-11 02:28 UTC
Fromozled at growingman dot com
Assignedcipri
StatusBogus
PackageMail_Mime
PHP Version4.3.11
OSIrrelevant
Roadmaps(Not assigned)

Comments

[2005-08-11 02:28 UTC] ozled at growingman dot com

Description:
------------
Any occurrence of '=' within the text or the tags of the HTML body are transformed into '=3D'.

Test script:
---------------
$message = '= centered =';

$mime = new Mail_mime("\n");
$mime->setHTMLBody( $message );

echo $mime->get();

Expected result:
----------------
= centered =

Actual result:
--------------
=3D centered =3D