From 96f51092a0ff8f739e9a46643e5a427953f125eb Mon Sep 17 00:00:00 2001 From: diptanilsaha Date: Wed, 19 Aug 2026 02:06:22 +0530 Subject: [PATCH] fix: escape help article title, description and category on support page --- erpnext/www/support/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/erpnext/www/support/index.html b/erpnext/www/support/index.html index 6702e57cae7..d2625cd55ad 100644 --- a/erpnext/www/support/index.html +++ b/erpnext/www/support/index.html @@ -49,9 +49,9 @@
- {{ favorite_article['category'] }}
-

{{ favorite_article['title'] }}

-

{{ favorite_article['description'] }}

+ {{ favorite_article['category'] | e }} +

{{ favorite_article['title'] | e }}

+

{{ favorite_article['description'] | e }}

@@ -72,7 +72,7 @@
{{ item['category'].name }}
{% for article in item['articles'] %} - {{ article.title }} + {{ article.title | e }} {% endfor %}