Edit report at https://bugs.php.net/bug.php?id=61409&edit=1

 ID:                 61409
 Updated by:         ahar...@php.net
 Reported by:        vr...@php.net
-Summary:            Bad formatting on php_info()
+Summary:            Bad formatting on phpinfo()
-Status:             Assigned
+Status:             Closed
 Type:               Bug
 Package:            PHP options/info functions
 Operating System:   Irrelevant
 PHP Version:        5.4SVN-2012-03-15 (SVN)
 Assigned To:        aharvey
 Block user comment: N
 Private report:     N

 New Comment:

Applied on PHP_5_4 and trunk. Thanks!


Previous Comments:
------------------------------------------------------------------------
[2012-03-16 02:07:35] ahar...@php.net

Automatic comment from SVN on behalf of aharvey
Revision: http://svn.php.net/viewvc/?view=revision&revision=324289
Log: Fix bug #61409 (Bad formatting on phpinfo()). Patch by Jakub Vrana.

------------------------------------------------------------------------
[2012-03-16 01:49:50] ahar...@php.net

This only appears to affect 5.4 and trunk.

------------------------------------------------------------------------
[2012-03-15 22:11:39] vr...@php.net

Description:
------------
The whole row of Registered PHP Streams (and two others) is formatted as value. 
It should be formatted same as other rows.

Test script:
---------------
<?php
php_info();


Expected result:
----------------
<tr><td class="e">Registered PHP Streams</td><td class="v">...</td></tr>
<tr><td class="e">Registered Stream Socket Transports</td><td 
class="v">...</td></tr>
<tr><td class="e">Registered Stream Filters</td><td class="v">...</td></tr>


Actual result:
--------------
<tr class="v"><td>Registered PHP Streams</td><td>...</td></tr>
<tr class="v"><td>Registered Stream Socket Transports</td><td>...</td></tr>
<tr class="v"><td>Registered Stream Filters</td><td>...</td></tr>



------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=61409&edit=1

Reply via email to