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.
This commit is contained in:
Kevin Jump
2014-09-07 01:59:02 +01:00
parent e9b137cde8
commit ce521c7624

View File

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