Home » Web Services » XML_RPC » Bug #7088
createPayload() function of XML_RPC_Message behaves incorrectly
Details
| Submitted | 2006-03-10 12:34 UTC |
|---|---|
| From | karlson at php dot net |
| Assigned | danielc |
| Status | Closed |
| Package | XML_RPC |
| PHP Version | Irrelevant |
| OS | Irrelevant |
| Roadmaps | (Not assigned) |
Comments
[2006-03-10 12:34 UTC] karlson at php dot net
Description:
------------
createPayload function applies the following regular experssion at it's last line
$this->payload = ereg_replace("[\r\n]+", "\r\n", $this->payload);
This expression actually modifies the values of the message, so the message is possibly not the same, as what the user actually created.