Skip to content

Commit

Permalink
add escape html for description
Browse files Browse the repository at this point in the history
  • Loading branch information
marekfilip committed Sep 13, 2024
1 parent 59b6655 commit 3c29af6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion data/web/js/site/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,10 @@ jQuery(function($){
{
title: lang.description,
data: 'description',
defaultContent: ''
defaultContent: '',
render: function (data, type) {
return escapeHtml(data);
}
},
{
title: lang.alias_valid_until,
Expand Down

0 comments on commit 3c29af6

Please sign in to comment.