ID: 35717
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Wont fix
Bug Type: Livedocs problem
PHP Version: Irrelevant
New Comment:
Livedocs is no longer in development, the current build system is
titled PhD.
Note: PhD works either way.
Previous Comments:
------------------------------------------------------------------------
[2005-12-16 23:25:22] [EMAIL PROTECTED]
Description:
------------
Something like :
<methodsynopsis>
<type>void</type>
<methodname>SDO_Sequence::insert</methodname>
<methodparam>
<type>mixed</type>
<parameter>value</parameter>
</methodparam>
<methodparam choice="opt">
<type>int</type>
<parameter>sequenceIndex</parameter>
</methodparam>
<methodparam choice="opt">
<type>mixed</type>
<parameter>propertyIdentifier</parameter>
</methodparam>
</methodsynopsis>
Will appear "void ( mixed [, int [, mixed ]])"
We have to put the type and parameter on the same line to have a
correct output.
So
<methodsynopsis>
<type>void</type><methodname>SDO_Sequence::insert</methodname>
<methodparam>
<type>mixed</type><parameter>value</parameter>
</methodparam>
<methodparam choice="opt">
<type>int</type><parameter>sequenceIndex</parameter>
</methodparam>
<methodparam choice="opt">
<type>mixed</type><parameter>propertyIdentifier</parameter>
</methodparam>
</methodsynopsis>
Displays : "void SDO_Sequence::insert(mixed $value [, int
$sequenceIndex [, mixed $propertyIdentifier]])"
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=35717&edit=1