F96: The task details forms for invite tasks have a custom look & feel

The accept and reject tasks will need a bit more work but it's all functional now.

Also fixed a problem introduced earlier today when handling default hidden transition strings.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21596 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2010-08-04 13:06:32 +00:00
parent 312181488b
commit 3266debfea

View File

@@ -201,7 +201,7 @@ public class TaskFormProcessor extends AbstractWorkflowFormProcessor<WorkflowTas
{
return (List<String>) hiddenValues;
}
else if (hiddenValues instanceof String)
else if (hiddenValues instanceof String && ((String)hiddenValues).length() > 0)
{
return Arrays.asList(((String)hiddenValues).split(","));
}