aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--inc/poche/Url.class.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/inc/poche/Url.class.php b/inc/poche/Url.class.php
index 36fdd0f5..3c74fb43 100644
--- a/inc/poche/Url.class.php
+++ b/inc/poche/Url.class.php
@@ -65,13 +65,14 @@ class Url
65 $tidy = tidy_parse_string($html, array(), 'UTF8'); 65 $tidy = tidy_parse_string($html, array(), 'UTF8');
66 $tidy->cleanRepair(); 66 $tidy->cleanRepair();
67 67
68 //Warning: tidy might fail so, ensure there is still a content 68 //Warning: tidy might fail so, ensure there is still a content
69 $body = $tidy->body(); 69 $body = $tidy->body();
70 70
71 //hasChildren does not seem to work, just check the string 71 //hasChildren does not seem to work, just check the string
72 //returned (and do not forget to clean the white spaces) 72 //returned (and do not forget to clean the white spaces)
73 if (preg_replace('/\s+/', '', $body->value) !== "<body></body>") 73 if (preg_replace('/\s+/', '', $body->value) !== "<body></body>") {
74 $html = $tidy->value; 74 $html = $tidy->value;
75 }
75 } 76 }
76 77
77 $parameters = array(); 78 $parameters = array();