=== modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/trackedentity/TrackedEntityAttribute.java' --- dhis-2/dhis-api/src/main/java/org/hisp/dhis/trackedentity/TrackedEntityAttribute.java 2015-05-11 11:58:34 +0000 +++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/trackedentity/TrackedEntityAttribute.java 2015-06-18 01:39:08 +0000 @@ -422,6 +422,7 @@ orgunitScope = trackedEntityAttribute.getOrgunitScope(); programScope = trackedEntityAttribute.getProgramScope(); confidential = trackedEntityAttribute.getConfidential(); + optionSet = trackedEntityAttribute.getOptionSet(); } else if ( strategy.isMerge() ) { @@ -438,6 +439,7 @@ orgunitScope = trackedEntityAttribute.getOrgunitScope() == null ? orgunitScope : trackedEntityAttribute.getOrgunitScope(); programScope = trackedEntityAttribute.getProgramScope() == null ? programScope : trackedEntityAttribute.getProgramScope(); confidential = trackedEntityAttribute.getConfidential() == null ? confidential : trackedEntityAttribute.getConfidential(); + optionSet = trackedEntityAttribute.getOptionSet() == null ? optionSet : trackedEntityAttribute.getOptionSet(); } attributeValues.clear();