dc/user: render user fullnames htmlEncoded

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Dominik Csapak 2018-10-19 12:36:45 +02:00 committed by Thomas Lamprecht
parent 946a2dadd2
commit eda3b1c292

View File

@ -96,7 +96,7 @@ Ext.define('PVE.dc.UserView', {
var first = firstname || '';
var last = record.data.lastname || '';
return first + " " + last;
return Ext.htmlEncode(first + " " + last);
};
var render_username = function(userid) {