From 8c7fc4cc74ae6a3ae0c994ab67dd99b0770b1dee Mon Sep 17 00:00:00 2001 From: Roy Wetherall Date: Fri, 26 Feb 2010 05:31:09 +0000 Subject: [PATCH] SAIL-307 : Changes in the action (condition) definitions - Hide create-version action - add missing property definition for minor-version git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18871 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- config/alfresco/action-services-context.xml | 2 +- .../alfresco/repo/action/executer/CheckInActionExecuter.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/alfresco/action-services-context.xml b/config/alfresco/action-services-context.xml index 59939f9ec1..4bdec2f235 100644 --- a/config/alfresco/action-services-context.xml +++ b/config/alfresco/action-services-context.xml @@ -286,7 +286,7 @@ - true + false diff --git a/source/java/org/alfresco/repo/action/executer/CheckInActionExecuter.java b/source/java/org/alfresco/repo/action/executer/CheckInActionExecuter.java index c9d165f0bc..a25a75ae42 100644 --- a/source/java/org/alfresco/repo/action/executer/CheckInActionExecuter.java +++ b/source/java/org/alfresco/repo/action/executer/CheckInActionExecuter.java @@ -118,6 +118,7 @@ public class CheckInActionExecuter extends ActionExecuterAbstractBase protected void addParameterDefinitions(List paramList) { paramList.add(new ParameterDefinitionImpl(PARAM_DESCRIPTION, DataTypeDefinition.TEXT, false, getParamDisplayLabel(PARAM_DESCRIPTION))); + paramList.add(new ParameterDefinitionImpl(PARAM_MINOR_CHANGE, DataTypeDefinition.BOOLEAN, false, getParamDisplayLabel(PARAM_MINOR_CHANGE))); } }