diff options
author | Daniel Beulshausen <dbeu@php.net> | 2000-10-08 10:55:09 +0000 |
---|---|---|
committer | Daniel Beulshausen <dbeu@php.net> | 2000-10-08 10:55:09 +0000 |
commit | 990a86615dd1aad60e752374892f1398657ca81a (patch) | |
tree | 3158453abfea58a901c3af4defc6855b329199c8 | |
parent | f2f5f5a8701fbf7a8b1e590032dfa227dd3c5fe7 (diff) | |
download | php-git-990a86615dd1aad60e752374892f1398657ca81a.tar.gz |
only beautifying
-rw-r--r-- | ext/calendar/calendar.c | 5 |
1 files changed, 4 insertions, 1 deletions
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(); } |