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

Conflicts:
	src/Umbraco.Core/Models/Member.cs
This commit is contained in:
Shannon
2014-04-17 18:54:55 +10:00
parent cf6775ec31
commit fee23fac0a
8 changed files with 8 additions and 8 deletions

View File

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