Home » Web Services » XML_RPC » Bug #1859
doc to update: global variables for types
Details
| Submitted | 2004-07-13 06:15 UTC |
|---|---|
| From | ignatius dot reilly at free dot fr |
| Assigned | danielc |
| Status | Closed |
| Package | XML_RPC |
| PHP Version | 4.3.7 |
| OS | irrelevant |
| Roadmaps | (Not assigned) |
Comments
[2004-07-13 06:15 UTC] ignatius dot reilly at free dot fr
Description:
------------
In the online doc ("API" page)
<doc>
For convenience the strings representing the XML-RPC types have been encoded as global variables:
<?php
$xmlrpcI4 = "i4";
$xmlrpcInt = "int";
...
</doc>
global variables have now a different name
Reproduce code:
---------------
Should be:
<doc>
For convenience the strings representing the XML-RPC types have been encoded as global variables:
<?php
$XML_RPC_I4 = "i4";
$XML_RPC_Int = "int";
...
</doc>