mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Converted 'manage groups' page to proper dialog and updated related pages to use pattern usethelink should use for all remaining pages
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6865 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -82,7 +82,18 @@ public final class WizardManager
|
||||
if (component instanceof UIActionLink)
|
||||
{
|
||||
// store the parameters
|
||||
setupParameters( ((UIActionLink)component).getParameterMap() );
|
||||
this.paramsToApply = ((UIActionLink)component).getParameterMap();
|
||||
|
||||
// make sure "null" parameters are actually null, this can occur
|
||||
// when null parameters are sent to the client and posted back
|
||||
for (String name : this.paramsToApply.keySet())
|
||||
{
|
||||
String value = this.paramsToApply.get(name);
|
||||
if (value != null && value.equalsIgnoreCase("null"))
|
||||
{
|
||||
this.paramsToApply.put(name, null);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user