From ce521c762495c452e7be59cd5f78ff9e807e44d5 Mon Sep 17 00:00:00 2001 From: Kevin Jump Date: Sun, 7 Sep 2014 01:59:02 +0100 Subject: [PATCH] Reverting SetValue change on CreateContent Move the content.SetValue out of the if (propertyType == null) call - as this causes inherited values not to be saved. --- src/Umbraco.Core/Services/PackagingService.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Umbraco.Core/Services/PackagingService.cs b/src/Umbraco.Core/Services/PackagingService.cs index 47310ab1c3..6309105f7b 100644 --- a/src/Umbraco.Core/Services/PackagingService.cs +++ b/src/Umbraco.Core/Services/PackagingService.cs @@ -259,10 +259,9 @@ namespace Umbraco.Core.Services propertyValue = string.Join(",", propertyValueList.ToArray()); } - - //set property value - content.SetValue(propertyTypeAlias, propertyValue); } + //set property value + content.SetValue(propertyTypeAlias, propertyValue); } }