diff --git a/ext/standard/info.c b/ext/standard/info.c
index e77f4d9c446..c1567e8016c 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");
}