diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ec05a2bd..d27421aa 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -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) diff --git a/bridges/LfcPlBridge.php b/bridges/LfcPlBridge.php index 9b199a10..dd74205d 100644 --- a/bridges/LfcPlBridge.php +++ b/bridges/LfcPlBridge.php @@ -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 . '
' . $content . '

'; + $commentContent = $comment->find('.content', 0)->plaintext; + $comments .= $header . '
' . $commentContent . '

'; } } }