diff options
author | Colin Viebrock <cmv@php.net> | 2000-04-05 22:30:19 +0000 |
---|---|---|
committer | Colin Viebrock <cmv@php.net> | 2000-04-05 22:30:19 +0000 |
commit | 731404c0ba2d8a66bded77feec15bf8ba50099c8 (patch) | |
tree | 6410f0d01e6eadb4b22380047d0876f75f25e539 /ext/aspell | |
parent | 0c2b366ce18ec4927ae31151ad05249c857e2e72 (diff) | |
download | php-git-731404c0ba2d8a66bded77feec15bf8ba50099c8.tar.gz |
phpinfo() prettying
I will get to the rest of the functions later tonight or tomorrow
(i.e. from hyperwave to snmp)
Diffstat (limited to 'ext/aspell')
-rw-r--r-- | ext/aspell/aspell.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/aspell/aspell.c b/ext/aspell/aspell.c index 74d8a73df1..b890f212e2 100644 --- a/ext/aspell/aspell.c +++ b/ext/aspell/aspell.c @@ -19,6 +19,7 @@ /* $Id$ */ #include "php.h" + #if defined(COMPILE_DL) #include "phpdl.h" #endif @@ -30,6 +31,7 @@ #include "php_aspell.h" #include <aspell-c.h> +#include "ext/standard/info.h" function_entry aspell_functions[] = { PHP_FE(aspell_new, NULL) @@ -194,8 +196,9 @@ PHP_FUNCTION(aspell_check_raw) PHP_MINFO_FUNCTION(aspell) { - php_printf("ASpell support enabled"); - + php_info_print_table_start(); + php_info_print_table_row(2, "ASpell Support", "enabled"); + php_info_print_table_end(); } #endif |