diff options
author | foobar <sniper@php.net> | 2005-12-06 02:28:41 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-12-06 02:28:41 +0000 |
commit | 3e669bc950eb5f36e5f0bec199f8e4b9de4d13f2 (patch) | |
tree | 710f41df00171b7c2daad96f0eba3171f09188b1 /ext/tidy | |
parent | 347032c7530f24cc4979ea297ae8cfda8851c14a (diff) | |
download | php-git-3e669bc950eb5f36e5f0bec199f8e4b9de4d13f2.tar.gz |
MFH: nuke php3 legacy
Diffstat (limited to 'ext/tidy')
-rw-r--r-- | ext/tidy/tidy.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c index 89a7132e86..5e4075e48c 100644 --- a/ext/tidy/tidy.c +++ b/ext/tidy/tidy.c @@ -237,7 +237,7 @@ STD_PHP_INI_ENTRY("tidy.default_config", "", PHP_INI_SYSTEM, OnUpdateString, d PHP_INI_ENTRY("tidy.clean_output", "0", PHP_INI_PERDIR, NULL) PHP_INI_END() -function_entry tidy_functions[] = { +zend_function_entry tidy_functions[] = { PHP_FE(tidy_getopt, NULL) PHP_FE(tidy_parse_string, NULL) PHP_FE(tidy_parse_file, NULL) @@ -268,7 +268,7 @@ function_entry tidy_functions[] = { {NULL, NULL, NULL} }; -function_entry tidy_funcs_doc[] = { +zend_function_entry tidy_funcs_doc[] = { TIDY_METHOD_MAP(getOpt, tidy_getopt, NULL) TIDY_METHOD_MAP(cleanRepair, tidy_clean_repair, NULL) TIDY_DOC_ME(parseFile, NULL) @@ -293,7 +293,7 @@ function_entry tidy_funcs_doc[] = { {NULL, NULL, NULL} }; -function_entry tidy_funcs_node[] = { +zend_function_entry tidy_funcs_node[] = { TIDY_NODE_ME(__construct, NULL) TIDY_NODE_ME(hasChildren, NULL) TIDY_NODE_ME(hasSiblings, NULL) @@ -306,7 +306,7 @@ function_entry tidy_funcs_node[] = { {NULL, NULL, NULL} }; -function_entry tidy_funcs_exception[] = { +zend_function_entry tidy_funcs_exception[] = { {NULL, NULL, NULL} }; |