Home » Mail » Mail_Mime » Bug #5062
'=' not handled properly
Details
| Submitted | 2005-08-11 02:28 UTC |
|---|---|
| From | ozled at growingman dot com |
| Assigned | cipri |
| Status | Bogus |
| Package | Mail_Mime |
| PHP Version | 4.3.11 |
| OS | Irrelevant |
| 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