Fix for ALF-8127 - Inconsistence between Create and Edit user page

- Last name no longer mandatory in Create User and associated pages

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@30501 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2011-09-14 09:47:10 +00:00
parent c90ff1b526
commit 11eb432faf

View File

@@ -285,7 +285,6 @@ public final class People extends BaseScopableProcessorExtension implements Init
String password, boolean setAccountEnabled, boolean notifyByEmail)
{
ParameterCheck.mandatory("firstName", firstName);
ParameterCheck.mandatory("lastName", lastName);
ParameterCheck.mandatory("emailAddress", emailAddress);
ScriptNode person = null;
@@ -443,7 +442,6 @@ public final class People extends BaseScopableProcessorExtension implements Init
{
ParameterCheck.mandatoryString("userName", userName);
ParameterCheck.mandatoryString("firstName", firstName);
ParameterCheck.mandatoryString("lastName", lastName);
ParameterCheck.mandatoryString("emailAddress", emailAddress);
ScriptNode person = null;