From 99fe89addc33bb92f10bb30c5151b591cc4973c8 Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Mon, 8 Apr 2013 06:55:48 -0200 Subject: [PATCH] Fix U4-1864 the same way as in 6.0.x --- src/umbraco.cms/businesslogic/Content.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/umbraco.cms/businesslogic/Content.cs b/src/umbraco.cms/businesslogic/Content.cs index 8390269602..d8c30138ae 100644 --- a/src/umbraco.cms/businesslogic/Content.cs +++ b/src/umbraco.cms/businesslogic/Content.cs @@ -699,7 +699,7 @@ namespace umbraco.cms.businesslogic continue; //get the propertyId - var property = propData.FirstOrDefault(x => x.PropertyTypeId == pt.Id); + var property = propData.LastOrDefault(x => x.PropertyTypeId == pt.Id); if (property == null) { //continue;