From: John Coggeshall Date: Wed, 6 Aug 2003 21:32:46 +0000 (+0000) Subject: Keeping up with ZE changes to the function struct, fixed tests X-Git-Tag: RELEASE_0_5_3~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8356a0dc6b1e2e755c51e018524b87a77ac9797;p=php Keeping up with ZE changes to the function struct, fixed tests --- diff --git a/ext/tidy/tests/001.phpt b/ext/tidy/tests/001.phpt index 4be56d0403..17da6f9874 100644 --- a/ext/tidy/tests/001.phpt +++ b/ext/tidy/tests/001.phpt @@ -1,7 +1,7 @@ --TEST-- Check for tidy presence --SKIPIF-- - + --POST-- --GET-- --INI-- diff --git a/ext/tidy/tests/002.phpt b/ext/tidy/tests/002.phpt index b3fccffb3f..b28b28410a 100644 --- a/ext/tidy/tests/002.phpt +++ b/ext/tidy/tests/002.phpt @@ -1,7 +1,7 @@ --TEST-- tidy_parse_string() --SKIPIF-- - + --POST-- --GET-- --INI-- diff --git a/ext/tidy/tests/003.phpt b/ext/tidy/tests/003.phpt index fe0fefc688..289198c538 100644 --- a/ext/tidy/tests/003.phpt +++ b/ext/tidy/tests/003.phpt @@ -1,7 +1,7 @@ --TEST-- tidy_clean_repair() --SKIPIF-- - + --POST-- --GET-- --INI-- diff --git a/ext/tidy/tests/004.phpt b/ext/tidy/tests/004.phpt index 930a2093c7..299c191dc6 100644 --- a/ext/tidy/tests/004.phpt +++ b/ext/tidy/tests/004.phpt @@ -1,7 +1,7 @@ --TEST-- tidy_diagnose() --SKIPIF-- - + --POST-- --GET-- --INI-- diff --git a/ext/tidy/tests/005.phpt b/ext/tidy/tests/005.phpt index 828bc148ea..c1ee50713c 100644 --- a/ext/tidy/tests/005.phpt +++ b/ext/tidy/tests/005.phpt @@ -1,7 +1,7 @@ --TEST-- tidy_parse_file() --SKIPIF-- - + --POST-- --GET-- --INI-- diff --git a/ext/tidy/tests/006.phpt b/ext/tidy/tests/006.phpt index 2ea27d38f4..37f3ebb899 100644 --- a/ext/tidy/tests/006.phpt +++ b/ext/tidy/tests/006.phpt @@ -1,7 +1,7 @@ --TEST-- Verbose tidy_get_error_buffer() --SKIPIF-- - + --POST-- --GET-- --INI-- diff --git a/ext/tidy/tests/007.phpt b/ext/tidy/tests/007.phpt index 7fcbb8f39c..f81853a29e 100644 --- a/ext/tidy/tests/007.phpt +++ b/ext/tidy/tests/007.phpt @@ -1,7 +1,7 @@ --TEST-- Verbose tidy_setopt() / tidy_getopt() --SKIPIF-- - + --POST-- --GET-- --INI-- diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c index ee0e84556b..cd5a3b0a78 100644 --- a/ext/tidy/tidy.c +++ b/ext/tidy/tidy.c @@ -1332,7 +1332,7 @@ PHP_FUNCTION(tidy_get_body) { f = emalloc(sizeof(zend_internal_function)); f->type = ZEND_OVERLOADED_FUNCTION; - f->arg_types = NULL; + //f->arg_types = NULL; f->scope = php_tidy_ce; f->fn_flags = 0; f->function_name = estrndup(method, method_len);