diff --git a/NEWS b/NEWS index c79b1ba9668..02a1d4b94df 100644 --- a/NEWS +++ b/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) diff --git a/ext/standard/info.c b/ext/standard/info.c index bc2abcb8f1b..07e152874a3 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -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("Registered %s", name); + php_info_printf("Registered %s", name); } else { php_info_printf("\nRegistered %s => ", name); }