PEAR is archived and read-only

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

Home » Web Services » XML_RPC » Bug #1859

doc to update: global variables for types

Details

Submitted2004-07-13 06:15 UTC
Fromignatius dot reilly at free dot fr
Assigneddanielc
StatusClosed
PackageXML_RPC
PHP Version4.3.7
OSirrelevant
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>