summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
authorChristian Stocker <chregu@php.net>2002-08-23 15:26:19 +0000
committerChristian Stocker <chregu@php.net>2002-08-23 15:26:19 +0000
commit064fb5c3cbdb6a575d189f200dbb95a12a728075 (patch)
tree255ec4d77c82ec9b025fcb1526346172301e567f /ext/domxml/php_domxml.c
parent9278d9bf1afbecdbc84fafcc402b377de235bbb8 (diff)
downloadphp-git-064fb5c3cbdb6a575d189f200dbb95a12a728075.tar.gz
renamed xslt_dump_* to xslt_result_dump_* to avoid confusion
# will adjust NEWS file later
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c
index c291fe904b..7b34a5f379 100644
--- a/ext/domxml/php_domxml.c
+++ b/ext/domxml/php_domxml.c
@@ -282,8 +282,8 @@ static zend_function_entry domxml_functions[] = {
PHP_FE(domxml_xslt_stylesheet_doc, NULL)
PHP_FE(domxml_xslt_stylesheet_file, NULL)
PHP_FE(domxml_xslt_process, NULL)
- PHP_FE(domxml_xslt_dump_mem, NULL)
- PHP_FE(domxml_xslt_dump_file, NULL)
+ PHP_FE(domxml_xslt_result_dump_mem, NULL)
+ PHP_FE(domxml_xslt_result_dump_file, NULL)
#endif
PHP_FALIAS(domxml_add_root, domxml_doc_add_root, NULL)
@@ -523,8 +523,8 @@ static zend_function_entry php_domxmlns_class_functions[] = {
static zend_function_entry php_domxsltstylesheet_class_functions[] = {
/* TODO: maybe some more methods? */
PHP_FALIAS(process, domxml_xslt_process, NULL)
- PHP_FALIAS(dump_mem, domxml_xslt_dump_mem, NULL)
- PHP_FALIAS(dump_file, domxml_xslt_dump_file, NULL)
+ PHP_FALIAS(result_dump_mem, domxml_xslt_result_dump_mem, NULL)
+ PHP_FALIAS(result_dump_file, domxml_xslt_result_dump_file, NULL)
{NULL, NULL, NULL}
};
#endif
@@ -5179,9 +5179,9 @@ PHP_FUNCTION(domxml_xslt_process)
}
/* }}} */
-/* {{{ proto string domxml_xslt_dump_mem(object xslstylesheet, object xmldoc)
+/* {{{ proto string domxml_xslt_result_dump_mem(object xslstylesheet, object xmldoc)
output XSLT result to memory */
-PHP_FUNCTION(domxml_xslt_dump_mem)
+PHP_FUNCTION(domxml_xslt_result_dump_mem)
{
zval *rv, *idxsl, *idxml;
xsltStylesheetPtr xsltstp;
@@ -5216,9 +5216,9 @@ PHP_FUNCTION(domxml_xslt_dump_mem)
}
/* }}} */
-/* {{{ proto int domxml_xslt_dump_file(object xslstylesheet, object xmldoc, string filename[, int compression])
+/* {{{ proto int domxml_xslt_result_dump_file(object xslstylesheet, object xmldoc, string filename[, int compression])
output XSLT result to File */
-PHP_FUNCTION(domxml_xslt_dump_file)
+PHP_FUNCTION(domxml_xslt_result_dump_file)
{
zval *rv, *idxsl, *idxml;
xsltStylesheetPtr xsltstp;