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:
committed by
Thomas Lamprecht
parent
946a2dadd2
commit
eda3b1c292
@@ -96,7 +96,7 @@ Ext.define('PVE.dc.UserView', {
|
|||||||
|
|
||||||
var first = firstname || '';
|
var first = firstname || '';
|
||||||
var last = record.data.lastname || '';
|
var last = record.data.lastname || '';
|
||||||
return first + " " + last;
|
return Ext.htmlEncode(first + " " + last);
|
||||||
};
|
};
|
||||||
|
|
||||||
var render_username = function(userid) {
|
var render_username = function(userid) {
|
||||||
|
Reference in New Issue
Block a user