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))); } }