From 990a86615dd1aad60e752374892f1398657ca81a Mon Sep 17 00:00:00 2001 From: Daniel Beulshausen Date: Sun, 8 Oct 2000 10:55:09 +0000 Subject: [PATCH] only beautifying --- ext/calendar/calendar.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ext/calendar/calendar.c b/ext/calendar/calendar.c index cacc09c4f1..b681ee9420 100644 --- a/ext/calendar/calendar.c +++ b/ext/calendar/calendar.c @@ -20,6 +20,7 @@ /* $Id: */ #include "php.h" +#include "ext/standard/info.h" #include "php_calendar.h" #include "sdncal.h" @@ -67,7 +68,9 @@ PHP_MINIT_FUNCTION(calendar) PHP_MINFO_FUNCTION(calendar) { - php_printf("Calendar support enabled"); + php_info_print_table_start(); + php_info_print_table_row(2, "Calendar support", "enabled"); + php_info_print_table_end(); } -- 2.50.1