mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Fix bug #61409 (Bad formatting on phpinfo()). Patch by Jakub Vrana.
This commit is contained in:
parent
2dee9ec9f0
commit
9aec9ccd7c
1
NEWS
1
NEWS
@ -96,6 +96,7 @@ PHP NEWS
|
||||
- Standard:
|
||||
. Fixed memory leak in substr_replace. (Pierrick)
|
||||
. Make max_file_uploads ini directive settable outside of php.ini (Rasmus)
|
||||
. Fixed bug #61409 (Bad formatting on phpinfo()). (Jakub Vrana)
|
||||
. Fixed bug #60222 (time_nanosleep() does validate input params). (Ilia)
|
||||
. Fixed bug #60106 (stream_socket_server silently truncates long unix socket
|
||||
paths). (Ilia)
|
||||
|
@ -117,7 +117,7 @@ static void php_info_print_stream_hash(const char *name, HashTable *ht TSRMLS_DC
|
||||
HashPosition pos;
|
||||
|
||||
if (!sapi_module.phpinfo_as_text) {
|
||||
php_info_printf("<tr class=\"v\"><td>Registered %s</td><td>", name);
|
||||
php_info_printf("<tr><td class=\"e\">Registered %s</td><td class=\"v\">", name);
|
||||
} else {
|
||||
php_info_printf("\nRegistered %s => ", name);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user