Completes U4-2390 Remove VersionID Guid in IPublishedContent properties

This commit is contained in:
Shannon
2013-09-10 17:37:10 +10:00
parent 4957acb8d3
commit 42c86a05b8
12 changed files with 19 additions and 35 deletions

View File

@@ -514,8 +514,8 @@ namespace Umbraco.Web.PublishedCache.XmlPublishedCache
{
//this is taken from examine
_properties.Add(i.Key.InvariantStartsWith("__")
? new PropertyResult(i.Key, i.Value, Guid.Empty, PropertyResultType.CustomProperty)
: new PropertyResult(i.Key, i.Value, Guid.Empty, PropertyResultType.UserProperty));
? new PropertyResult(i.Key, i.Value, PropertyResultType.CustomProperty)
: new PropertyResult(i.Key, i.Value, PropertyResultType.UserProperty));
}
}