diff options
author | Jaroslaw Kolakowski <jarkol@php.net> | 2002-01-08 19:13:42 +0000 |
---|---|---|
committer | Jaroslaw Kolakowski <jarkol@php.net> | 2002-01-08 19:13:42 +0000 |
commit | b178addf5c51b56a9d9293c4b70a92c81f82d6f5 (patch) | |
tree | ebb852a6eb51fde21dcbdf856cf40a028bf942f0 /ext/domxml/php_domxml.h | |
parent | a41ee123df42c919a1bdff4f6b449ded9cacc5b6 (diff) | |
download | php-git-b178addf5c51b56a9d9293c4b70a92c81f82d6f5.tar.gz |
A
Changed names of functions:
- htmldoc() to html_doc(),
- htmldocfile() to html_doc_file(),
- domxml_htmldumpmem() to domxml_html_dump_mem(),
- htmldumpmem() to html_dump_mem().
Diffstat (limited to 'ext/domxml/php_domxml.h')
-rw-r--r-- | ext/domxml/php_domxml.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/domxml/php_domxml.h b/ext/domxml/php_domxml.h index 2a165ea2bd..f80b16357e 100644 --- a/ext/domxml/php_domxml.h +++ b/ext/domxml/php_domxml.h @@ -51,8 +51,8 @@ PHP_FUNCTION(domxml_version); PHP_FUNCTION(xmldoc); PHP_FUNCTION(xmldocfile); #if defined(LIBXML_HTML_ENABLED) -PHP_FUNCTION(htmldoc); -PHP_FUNCTION(htmldocfile); +PHP_FUNCTION(html_doc); +PHP_FUNCTION(html_doc_file); #endif PHP_FUNCTION(xmltree); PHP_FUNCTION(domxml_new_xmldoc); @@ -73,7 +73,7 @@ PHP_FUNCTION(domxml_add_root); PHP_FUNCTION(domxml_intdtd); PHP_FUNCTION(domxml_dumpmem); #if defined(LIBXML_HTML_ENABLED) -PHP_FUNCTION(domxml_htmldumpmem); +PHP_FUNCTION(domxml_html_dump_mem); #endif /* Class DocumentType methods */ |