diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-06-05 18:04:30 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-06-05 18:04:30 +0000 |
commit | cf0087ef345423d6a762e78d3daff1f03920d4ac (patch) | |
tree | 66e5638e616846057af652fcbe0e752056872755 | |
parent | 7dadb69c8881e6ac1825d5fff34a18b32b5773c4 (diff) | |
download | php-git-cf0087ef345423d6a762e78d3daff1f03920d4ac.tar.gz |
WS fix
-rw-r--r-- | ext/xsl/php_xsl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index 9b9562b9b2..c6ab3bf9d3 100644 --- a/ext/xsl/php_xsl.c +++ b/ext/xsl/php_xsl.c @@ -274,7 +274,7 @@ PHP_MINFO_FUNCTION(xsl) { php_info_print_table_start(); php_info_print_table_row(2, "XML/XSLT", "enabled"); - { + { char buffer[128]; int major, minor, subminor; @@ -289,7 +289,7 @@ PHP_MINFO_FUNCTION(xsl) subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); php_info_print_table_row(2, "libxslt compiled against libxml Version", buffer); - } + } php_info_print_table_end(); /* Remove comments if you have entries in php.ini |