Adding unique key to xml for contentbase exports

This commit is contained in:
Morten Christensen
2014-01-19 15:00:35 +01:00
parent a026a81a8a
commit ba27acead9

View File

@@ -114,6 +114,7 @@ namespace Umbraco.Core.Services
var xml = new XElement(nodeName,
new XAttribute("id", contentBase.Id),
new XAttribute("key", contentBase.Key.ToString("D")),
new XAttribute("parentID", contentBase.Level > 1 ? contentBase.ParentId : -1),
new XAttribute("level", contentBase.Level),
new XAttribute("creatorID", contentBase.CreatorId),