diff options
Diffstat (limited to 'ext/xsl/php_xsl.c')
-rw-r--r-- | ext/xsl/php_xsl.c | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index ae1a2d4a8a..7d4f83989d 100644 --- a/ext/xsl/php_xsl.c +++ b/ext/xsl/php_xsl.c @@ -28,9 +28,6 @@ #include "php_xsl.h" -/* If you declare any globals in php_xsl.h uncomment this: -ZEND_DECLARE_MODULE_GLOBALS(xsl) -*/ zend_class_entry *xsl_xsltprocessor_class_entry; static zend_object_handlers xsl_object_handlers; @@ -251,10 +248,6 @@ zval *php_xsl_create_object(xsltStylesheetPtr obj, int *found, zval *wrapper_in, */ PHP_MSHUTDOWN_FUNCTION(xsl) { - /* uncomment this line if you have INI entries - UNREGISTER_INI_ENTRIES(); - */ - xsltUnregisterExtModuleFunction ((const xmlChar *) "functionString", (const xmlChar *) "http://php.net/xsl"); xsltUnregisterExtModuleFunction ((const xmlChar *) "function", @@ -266,7 +259,6 @@ PHP_MSHUTDOWN_FUNCTION(xsl) } /* }}} */ -/* Remove if there's nothing to do at request start */ /* {{{ PHP_RINIT_FUNCTION */ PHP_RINIT_FUNCTION(xsl) @@ -276,7 +268,6 @@ PHP_RINIT_FUNCTION(xsl) } /* }}} */ -/* Remove if there's nothing to do at request end */ /* {{{ PHP_RSHUTDOWN_FUNCTION */ PHP_RSHUTDOWN_FUNCTION(xsl) @@ -308,14 +299,10 @@ PHP_MINFO_FUNCTION(xsl) php_info_print_table_row(2, "libxslt compiled against libxml Version", buffer); } #if HAVE_XSL_EXSLT - php_info_print_table_row(2, "EXSLT", "enabled"); - php_info_print_table_row(2, "libexslt Version", LIBEXSLT_DOTTED_VERSION); + php_info_print_table_row(2, "EXSLT", "enabled"); + php_info_print_table_row(2, "libexslt Version", LIBEXSLT_DOTTED_VERSION); #endif php_info_print_table_end(); - - /* Remove comments if you have entries in php.ini - DISPLAY_INI_ENTRIES(); - */ } /* }}} */ |