From 435be85f4485b0d7e90047066160fc25986eb865 Mon Sep 17 00:00:00 2001 From: Britt Park Date: Sun, 5 Nov 2006 23:41:55 +0000 Subject: [PATCH] Added two new fields to VersionRoot (the version record), a short description, and a long description. Adjusted signature of createSnapshot(), and update() to match, and thus actions and tests that needed to be fixed. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4290 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- source/java/org/alfresco/web/bean/wcm/ImportWebsiteDialog.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/java/org/alfresco/web/bean/wcm/ImportWebsiteDialog.java b/source/java/org/alfresco/web/bean/wcm/ImportWebsiteDialog.java index 6c59c629e7..48ee119573 100644 --- a/source/java/org/alfresco/web/bean/wcm/ImportWebsiteDialog.java +++ b/source/java/org/alfresco/web/bean/wcm/ImportWebsiteDialog.java @@ -212,7 +212,8 @@ public class ImportWebsiteDialog processZipImport(this.file, importRef); // After an import it's a good idea to snapshot the staging store - this.avmService.createSnapshot(store); + // TODO Maybe a nice auto generated comment. + this.avmService.createSnapshot(store, null, null); } } else