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 Aug 15, 2024
1 parent d5d043c commit 23e7032
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 23e7032

Please sign in to comment.