PHP :: Bug #61409 :: Bad formatting on phpinfo()

 [2012-03-15 22:11 UTC] vrana@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>


 [2012-03-16 01:49 UTC] aharvey@php.net

-Status: Open +Status: Assigned -Assigned To: +Assigned To: aharvey

 [2012-03-16 01:49 UTC] aharvey@php.net

This only appears to affect 5.4 and trunk.

 [2012-03-16 02:07 UTC] aharvey@php.net

Applied on PHP_5_4 and trunk. Thanks!

 [2012-03-16 02:07 UTC] aharvey@php.net

-Summary: Bad formatting on php_info() +Summary: Bad formatting on phpinfo() -Status: Assigned +Status: Closed