updates deep clone to have the false flag for resetting properties (we don't want to remember them when cloning)

This commit is contained in:
Shannon
2014-04-17 18:46:37 +10:00
parent 7d556a0318
commit 8c303893d2
9 changed files with 10 additions and 10 deletions

View File

@@ -650,7 +650,7 @@ namespace Umbraco.Core.Models
//need to manually clone this since it's not settable
clone._contentType = (IMemberType)ContentType.DeepClone();
clone.ResetDirtyProperties(true);
clone.ResetDirtyProperties(false);
return clone;