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:
Bartosz Sosna 2025-01-26 18:58:03 +01:00 committed by GitHub
parent 4da61b7922
commit ae8394d976
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -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)

View File

@ -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 />';
}
}
}