From 4dd01451dd6a874df64c477aa1b30b755630f79b Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Sat, 21 Jan 2012 11:32:56 +0000 Subject: revert r319254 (fix bug #54682) since it is not correct add test that was broken with that patch. this bug is probably in libtidy itself and not in PHP. I didn't investigate it enough to confirm, though --- ext/tidy/tidy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/tidy/tidy.c') diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c index f57be33a89..7dcd7b1b95 100644 --- a/ext/tidy/tidy.c +++ b/ext/tidy/tidy.c @@ -1288,7 +1288,7 @@ static PHP_FUNCTION(tidy_diagnose) { TIDY_FETCH_OBJECT; - if (tidyStatus(obj->ptdoc->doc) != 0 && tidyRunDiagnostics(obj->ptdoc->doc) >= 0) { + if (tidyRunDiagnostics(obj->ptdoc->doc) >= 0) { tidy_doc_update_properties(obj TSRMLS_CC); RETURN_TRUE; } -- cgit v1.2.1