incorporating APLAWS patch:

r1688 | chrisg23 | 2007-10-26 11:28:41 +0200 (Fr, 26 Okt 2007) 
Bugfix - need to set the application type's group during load


git-svn-id: https://svn.libreccm.org/ccm/trunk@36 8810af33-2d31-482b-a856-94f89814c4df
master
pb 2008-02-15 21:24:05 +00:00
parent 8138d560a3
commit fbaf37a9ca
1 changed files with 2 additions and 0 deletions

View File

@ -116,6 +116,7 @@ public class Loader extends PackageLoader {
// set up the portal node // set up the portal node
Workspace workspace = Workspace.createWorkspace(name, title, Workspace workspace = Workspace.createWorkspace(name, title,
parent, Boolean.TRUE.equals(isPublic)); parent, Boolean.TRUE.equals(isPublic));
} }
} }
@ -124,6 +125,7 @@ public class Loader extends PackageLoader {
"workspace", "Portal Workspace", "workspace", "Portal Workspace",
Workspace.BASE_DATA_OBJECT_TYPE); Workspace.BASE_DATA_OBJECT_TYPE);
type.setDescription("Portal based collaborative workspaces"); type.setDescription("Portal based collaborative workspaces");
type.createGroup();
return type; return type;
} }