summaryrefslogtreecommitdiff
path: root/ext/tidy
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-12-06 02:28:41 +0000
committerfoobar <sniper@php.net>2005-12-06 02:28:41 +0000
commit3e669bc950eb5f36e5f0bec199f8e4b9de4d13f2 (patch)
tree710f41df00171b7c2daad96f0eba3171f09188b1 /ext/tidy
parent347032c7530f24cc4979ea297ae8cfda8851c14a (diff)
downloadphp-git-3e669bc950eb5f36e5f0bec199f8e4b9de4d13f2.tar.gz
MFH: nuke php3 legacy
Diffstat (limited to 'ext/tidy')
-rw-r--r--ext/tidy/tidy.c8
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}
};