mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-11 11:04:36 +02: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:
@@ -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 />';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user