From 86c56ae844c484cdedf601a8a79da631fbd9e7e5 Mon Sep 17 00:00:00 2001 From: Kenn Jacobsen Date: Wed, 27 Feb 2019 19:00:44 +0100 Subject: [PATCH] Make sure to use the specified content template name when creating content templates from content --- src/Umbraco.Core/Services/Implement/ContentService.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Umbraco.Core/Services/Implement/ContentService.cs b/src/Umbraco.Core/Services/Implement/ContentService.cs index 2f0bd8431c..bd77daffbe 100644 --- a/src/Umbraco.Core/Services/Implement/ContentService.cs +++ b/src/Umbraco.Core/Services/Implement/ContentService.cs @@ -2889,15 +2889,12 @@ namespace Umbraco.Core.Services.Implement content.SetValue(property.Alias, property.GetValue(propertyCulture), propertyCulture); } - content.Name = blueprint.Name; if (!string.IsNullOrEmpty(culture)) { content.SetCultureInfo(culture, blueprint.GetCultureName(culture), now); } } - - return content; }