1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2026-07-29 16:13:39 +00:00

[Web] escape mailbox name

This commit is contained in:
FreddleSpl0it
2026-07-24 11:16:39 +02:00
parent cc9af65852
commit fea38c8e1b
+1
View File
@@ -996,6 +996,7 @@ jQuery(function($){
'style="min-width:2em;width:' + item.percent_in_use + '%">' + item.percent_in_use + '%' + '</div></div>' 'style="min-width:2em;width:' + item.percent_in_use + '%">' + item.percent_in_use + '%' + '</div></div>'
}; };
item.username = escapeHtml(item.username); item.username = escapeHtml(item.username);
item.name = escapeHtml(item.name);
if (Array.isArray(item.tags)){ if (Array.isArray(item.tags)){
var tags = ''; var tags = '';