mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
Fix FB2 bridge
This commit is contained in:
parent
d5f47efcea
commit
18c6f0126f
@ -97,15 +97,21 @@ EOD;
|
|||||||
|
|
||||||
$html = $this->buildContent($fileContent);
|
$html = $this->buildContent($fileContent);
|
||||||
$author = $this->getInput('u');
|
$author = $this->getInput('u');
|
||||||
|
|
||||||
foreach($html->find("article") as $content){
|
foreach($html->find("article") as $content){
|
||||||
|
|
||||||
$item = array();
|
$item = array();
|
||||||
|
|
||||||
$item['uri'] = "http://touch.facebook.com"
|
$item['uri'] = "http://touch.facebook.com"
|
||||||
. $content->find("div._52jc", 0)->find("a", 0)->getAttribute("href");
|
. $content->find("div[class='_52jc _5qc4 _24u0 _36xo']", 0)->find("a", 0)->getAttribute("href");
|
||||||
|
|
||||||
$content->find("header", 0)->innertext = "";
|
if($content->find("header", 0) !== null) {
|
||||||
$content->find("footer", 0)->innertext = "";
|
$content->find("header", 0)->innertext = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
if($content->find("footer", 0) !== null) {
|
||||||
|
$content->find("footer", 0)->innertext = "";
|
||||||
|
}
|
||||||
|
|
||||||
//Remove html nodes, keep only img, links, basic formatting
|
//Remove html nodes, keep only img, links, basic formatting
|
||||||
$content = strip_tags($content, '<a><img><i><u><br><p>');
|
$content = strip_tags($content, '<a><img><i><u><br><p>');
|
||||||
|
Loading…
Reference in New Issue
Block a user