mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-02 23:59:34 +00:00
Fix lfc.pl bug with page content when comments exist (#4425)
* Add lfc.pl bridge * Adjust bridge * Add comments section * Fix a bug with page content when comments exist * Add brtsos to CONTRIBUTORS.md
This commit is contained in:
parent
4da61b7922
commit
ae8394d976
@ -23,6 +23,7 @@
|
||||
* [Binnette](https://github.com/Binnette)
|
||||
* [BoboTiG](https://github.com/BoboTiG)
|
||||
* [Bockiii](https://github.com/Bockiii)
|
||||
* [brtsos](https://github.com/brtsos)
|
||||
* [captn3m0](https://github.com/captn3m0)
|
||||
* [chemel](https://github.com/chemel)
|
||||
* [Chouchen](https://github.com/Chouchen)
|
||||
|
@ -78,8 +78,8 @@ class LfcPlBridge extends BridgeAbstract
|
||||
|
||||
foreach ($commentsDom as $comment) {
|
||||
$header = $comment->find('.header', 0)->plaintext;
|
||||
$content = $comment->find('.content', 0)->plaintext;
|
||||
$comments .= $header . '<br />' . $content . '<br /><br />';
|
||||
$commentContent = $comment->find('.content', 0)->plaintext;
|
||||
$comments .= $header . '<br />' . $commentContent . '<br /><br />';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user