Fixed missing escaped for software list in category page.

This commit is contained in:
Christian P. MOMON 2020-12-10 00:25:00 +01:00
parent e5021f0f2c
commit b95cdd06b1

View file

@ -90,7 +90,7 @@ public class CategoryPage
data.setAttribute("categoryLogo", "src", category.getLogoPath());
data.setEscapedContent("categoryName", category.getName());
data.setEscapedContent("categoryDescription", category.getDescription());
data.setContent("categorySoftwares", category.getSoftwares().sort().toStringWithFrenchCommas());
data.setEscapedContent("categorySoftwares", category.getSoftwares().sort().toStringWithFrenchCommas());
data.setContent("serviceCount", services.size());
data.setContent("serviceListView", ServiceListView.build(services.sortByName()));