From ae47e0dba2fd91a9f04d3d15143d51e255aadf25 Mon Sep 17 00:00:00 2001 From: Kevin Roast Date: Fri, 6 Oct 2006 16:00:40 +0000 Subject: [PATCH] . UI bug fixes to the Create XML Form wizard: - fixed issue where the Add To List button was enabled when nothing was selected - caused null-ptr exception when pressed in this state - fixed Next button enabled state when nothing is selected on the Configure Template Output Methods screen . Removed "additional properties" checkbox and text in Create Web Content Wizard details page - not applicable for this wizard git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4052 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../alfresco/web/bean/content/CreateXmlContentTypeWizard.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/java/org/alfresco/web/bean/content/CreateXmlContentTypeWizard.java b/source/java/org/alfresco/web/bean/content/CreateXmlContentTypeWizard.java index 1a014e30cb..46d5cec1d7 100644 --- a/source/java/org/alfresco/web/bean/content/CreateXmlContentTypeWizard.java +++ b/source/java/org/alfresco/web/bean/content/CreateXmlContentTypeWizard.java @@ -111,7 +111,7 @@ public class CreateXmlContentTypeWizard extends BaseWizardBean protected ContentService contentService; private DataModel templateOutputMethodsDataModel; private List templateOutputMethods = null; - private String fileExtension = "shtml"; + private String fileExtension = null; // ------------------------------------------------------------------------------ // Wizard implementation @@ -200,6 +200,7 @@ public class CreateXmlContentTypeWizard extends BaseWizardBean this.schemaRootTagName = null; this.templateName = null; this.templateOutputMethods = new ArrayList(); + this.fileExtension = "shtml"; } @Override