mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-27 11:22:17 -05:00
Merge pull request #154 from nicofrand/dev
poche won't import the content of some articles
This commit is contained in:
commit
64fa45e262
@ -64,6 +64,13 @@ class Url
|
|||||||
if (function_exists('tidy_parse_string')) {
|
if (function_exists('tidy_parse_string')) {
|
||||||
$tidy = tidy_parse_string($html, array(), 'UTF8');
|
$tidy = tidy_parse_string($html, array(), 'UTF8');
|
||||||
$tidy->cleanRepair();
|
$tidy->cleanRepair();
|
||||||
|
|
||||||
|
//Warning: tidy might fail so, ensure there is still a content
|
||||||
|
$body = $tidy->body();
|
||||||
|
|
||||||
|
//hasChildren does not seem to work, just check the string
|
||||||
|
//returned (and do not forget to clean the white spaces)
|
||||||
|
if (preg_replace('/\s+/', '', $body->value) !== "<body></body>")
|
||||||
$html = $tidy->value;
|
$html = $tidy->value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user