From: Hartmut Holzgraefe Date: Tue, 6 Jun 2000 17:26:15 +0000 (+0000) Subject: added missing '/' to closing
tag (BUG ID #4416) X-Git-Tag: PRE_EIGHT_BYTE_ALLOC_PATCH~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7864fdfdee26ed9314a10a44f53d2147488df666;p=php added missing '/' to closing
tag (BUG ID #4416) --- diff --git a/ext/standard/info.c b/ext/standard/info.c index 0c9d1a1a17..e77f4d9c44 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -452,7 +452,7 @@ PHPAPI void php_info_print_table_start() PHPAPI void php_info_print_table_end() { php_printf("
\n"); - php_printf("
\n"); + php_printf("
\n"); }