From ae8394d976623fcda5313274e6257b3161607579 Mon Sep 17 00:00:00 2001 From: Bartosz Sosna Date: Sun, 26 Jan 2025 18:58:03 +0100 Subject: [PATCH] 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 --- CONTRIBUTORS.md | 1 + bridges/LfcPlBridge.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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 . '

'; } } }