From: Zeev Suraski Date: Fri, 9 Jun 2000 01:50:44 +0000 (+0000) Subject: Move back everything to where it belongs... X-Git-Tag: PRE_EIGHT_BYTE_ALLOC_PATCH~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c88d20070f99d89c8e2b1beb754672540ccbb24;p=php Move back everything to where it belongs... --- diff --git a/ext/standard/info.c b/ext/standard/info.c index e77f4d9c44..c1567e8016 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -139,6 +139,8 @@ PHPAPI void php_print_info(int flag) the_time = time(NULL); ta = php_localtime_r(&the_time, &tmbuf); + PUTS("
"); + if (flag & PHP_INFO_GENERAL) { char *zend_version = get_zend_version(); @@ -296,9 +298,6 @@ PHPAPI void php_print_info(int flag) php_info_print_table_end(); } - PUTS("
"); - - if (flag & PHP_INFO_LICENSE) { SECTION("PHP License"); php_info_print_box_start(0); @@ -318,17 +317,20 @@ PHPAPI void php_print_info(int flag) PUTS("

\n"); php_info_print_box_end(); } + + PUTS(""); } void php_print_credits(int flag) { if (flag & PHP_CREDITS_FULLPAGE) { - PUTS("PHP Credits
\n"); + PUTS("PHP Credits\n"); } php_info_print_style(); + PUTS("
"); PUTS("

PHP 4.0 Credits

\n"); if (flag & PHP_CREDITS_GROUP) { @@ -438,21 +440,21 @@ void php_print_credits(int flag) php_info_print_table_end(); } + PUTS("
"); + if (flag & PHP_CREDITS_FULLPAGE) { - PUTS("
\n"); + PUTS("\n"); } } PHPAPI void php_info_print_table_start() { - php_printf("
\n"); php_printf("\n"); } PHPAPI void php_info_print_table_end() { php_printf("

\n"); - php_printf("
\n"); }