Fixed missing escaped for software list in category page.
This commit is contained in:
parent
e5021f0f2c
commit
b95cdd06b1
1 changed files with 1 additions and 1 deletions
|
@ -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()));
|
||||
|
||||
|
|
Loading…
Reference in a new issue