mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-21 09:41:13 +00:00
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:
parent
7f4d4526f2
commit
7daa19ff2e
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user