Skip to content

Commit 6655f79

Browse files
committed
Fix bug #61409 (Bad formatting on phpinfo()). Patch by Jakub Vrana.
1 parent 632825a commit 6655f79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/info.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ static void php_info_print_stream_hash(const char *name, HashTable *ht TSRMLS_DC
117117
HashPosition pos;
118118

119119
if (!sapi_module.phpinfo_as_text) {
120-
php_info_printf("<tr class=\"v\"><td>Registered %s</td><td>", name);
120+
php_info_printf("<tr><td class=\"e\">Registered %s</td><td class=\"v\">", name);
121121
} else {
122122
php_info_printf("\nRegistered %s => ", name);
123123
}

0 commit comments

Comments
 (0)