diff --git a/source/java/org/alfresco/web/bean/users/CreateUserWizard.java b/source/java/org/alfresco/web/bean/users/CreateUserWizard.java index 7c1b9aff88..aece8efe84 100644 --- a/source/java/org/alfresco/web/bean/users/CreateUserWizard.java +++ b/source/java/org/alfresco/web/bean/users/CreateUserWizard.java @@ -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}); } /**