diff options
author | Colin Viebrock <cmv@php.net> | 2000-04-05 21:43:03 +0000 |
---|---|---|
committer | Colin Viebrock <cmv@php.net> | 2000-04-05 21:43:03 +0000 |
commit | 0c2b366ce18ec4927ae31151ad05249c857e2e72 (patch) | |
tree | 69d1e09c3a86ebb153224ba20189d93fe5cf5ce8 /ext/xml | |
parent | 3ba4105fde8739a5d70a9c3818c6a40ca9a55c8a (diff) | |
download | php-git-0c2b366ce18ec4927ae31151ad05249c857e2e72.tar.gz |
phpinfo() prettying
Diffstat (limited to 'ext/xml')
-rw-r--r-- | ext/xml/xml.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/xml/xml.c b/ext/xml/xml.c index b4ae6be08a..7576e0af3c 100644 --- a/ext/xml/xml.c +++ b/ext/xml/xml.c @@ -25,7 +25,7 @@ #include "php_xml.h" #include "zend_variables.h" #include "ext/standard/php_string.h" - +#include "ext/standard/info.h" #if HAVE_LIBEXPAT @@ -218,7 +218,10 @@ PHP_RSHUTDOWN_FUNCTION(xml) PHP_MINFO_FUNCTION(xml) { - PUTS("XML support active"); + + php_info_print_table_start(); + php_info_print_table_row(2, "XML Support", "active"); + php_info_print_table_end(); } |