From f1b2b4eaec5b3bbcd7055dcd1464568bd0eb4152 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Thu, 21 Aug 2025 13:43:14 +0900 Subject: [PATCH] Fix double escape of comment summary --- modules/comment/comment.item.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/comment/comment.item.php b/modules/comment/comment.item.php index 2afdd13d1..a372bc029 100644 --- a/modules/comment/comment.item.php +++ b/modules/comment/comment.item.php @@ -594,7 +594,7 @@ class CommentItem extends BaseObject // Truncate string $content = cut_str($content, $str_size, $tail); - $content = escape($content); + $content = escape($content, false); if ($content === '') {