diff options
author | Colin Viebrock <cmv@php.net> | 2000-04-06 17:05:33 +0000 |
---|---|---|
committer | Colin Viebrock <cmv@php.net> | 2000-04-06 17:05:33 +0000 |
commit | 4bd1af056e1859a91692d8916f513709057e6b5c (patch) | |
tree | d3d0a0dc782225c3c5b391aacf64ced0d5f3cb0f /ext/mcal/php_mcal.c | |
parent | 2cb6745cf001ec9e4fe8df78c74b994df2e80e73 (diff) | |
download | php-git-4bd1af056e1859a91692d8916f513709057e6b5c.tar.gz |
*** empty log message ***
Diffstat (limited to 'ext/mcal/php_mcal.c')
-rw-r--r-- | ext/mcal/php_mcal.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/mcal/php_mcal.c b/ext/mcal/php_mcal.c index aaa53004f6..c709179ad5 100644 --- a/ext/mcal/php_mcal.c +++ b/ext/mcal/php_mcal.c @@ -154,11 +154,12 @@ PHP_MINFO_FUNCTION(mcal) php_info_print_table_start(); php_info_print_table_row(2, "MCAL Support", "enabled" ); - php_info_print_table_row(2, "MCAL Version", CALVER ); #ifdef MCALVER - sprintf(tmp, "%d", MCALVER ); - php_info_print_table_row(2, "", tmp ); + snprintf(tmp, 128, "%s<BR>%d", CALVER, MCALVER); +#else + snprintf(tmp, 128, "%s", CALVER ); #endif + php_info_print_table_row(2, "MCAL Version", tmp ); php_info_print_table_end(); } |