summaryrefslogtreecommitdiff
path: root/ext/tidy/tidy.c
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2012-01-21 11:32:56 +0000
committerNuno Lopes <nlopess@php.net>2012-01-21 11:32:56 +0000
commit4dd01451dd6a874df64c477aa1b30b755630f79b (patch)
tree17d8c7c577aa489c8133967618086e1ea437eab4 /ext/tidy/tidy.c
parentdd95d90509191a663159bb4cbebcd8ffdac1a9ab (diff)
downloadphp-git-4dd01451dd6a874df64c477aa1b30b755630f79b.tar.gz
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
Diffstat (limited to 'ext/tidy/tidy.c')
-rw-r--r--ext/tidy/tidy.c2
1 files changed, 1 insertions, 1 deletions
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;
}