From e70bb8acf1e15b4c2fd5ab7ada467032067d7ed3 Mon Sep 17 00:00:00 2001 From: fuzzykitten Date: Sat, 26 Apr 2025 15:52:35 -0400 Subject: [PATCH] bugfix in rss-feed (htmlspecialchars) --- opt/display.php | 1 + 1 file changed, 1 insertion(+) diff --git a/opt/display.php b/opt/display.php index 5c7b047..532b152 100644 --- a/opt/display.php +++ b/opt/display.php @@ -862,6 +862,7 @@ function print_rss_all($db, $settings, $page) $org_id = "{$row[2]}"; $sub = "{$row[3]}"; $text = "{$row[4]}"; + $text = htmlspecialchars($text); $timestamp = "{$row[5]}"; $name = "{$row[6]}"; $move_message = "{$row[7]}";