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:
Kevin Roast
2009-06-23 07:33:53 +00:00
parent 9501f21795
commit 272a2812c1

View File

@@ -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});
}
/**