mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Fix for ALFCOM-2995 - XSS encoding missing in JSF client Create User wizard summary page.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14840 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -332,11 +332,11 @@ public class CreateUserWizard extends BaseWizardBean
|
||||
bundle.getString("user_jobtitle"), bundle.getString("user_location"),
|
||||
bundle.getString("presence_username"), bundle.getString("quota")},
|
||||
new String[] {
|
||||
this.firstName + " " + this.lastName, this.userName,
|
||||
Utils.encode(this.firstName + " " + this.lastName), this.userName,
|
||||
"********", homeSpaceLabel,
|
||||
this.email, this.organisation,
|
||||
this.jobtitle, this.location,
|
||||
presenceLabel, quotaLabel});
|
||||
Utils.encode(this.email), Utils.encode(this.organisation),
|
||||
Utils.encode(this.jobtitle), Utils.encode(this.location),
|
||||
Utils.encode(presenceLabel), quotaLabel});
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user