From 02785eea42247bdfb32d8cd64910de457d937704 Mon Sep 17 00:00:00 2001 From: Richard Soeteman Date: Mon, 6 Feb 2017 11:26:58 +0100 Subject: [PATCH 1/2] Fixed issue U4-9493 --- .../businesslogic/propertytype/propertytype.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/umbraco.cms/businesslogic/propertytype/propertytype.cs b/src/umbraco.cms/businesslogic/propertytype/propertytype.cs index e041306ba3..a6dbf440ec 100644 --- a/src/umbraco.cms/businesslogic/propertytype/propertytype.cs +++ b/src/umbraco.cms/businesslogic/propertytype/propertytype.cs @@ -73,12 +73,12 @@ namespace umbraco.cms.businesslogic.propertytype } _sortOrder = found.sortOrder; - _alias = found.alias; - _name = found.name; + _alias = found.Alias; + _name = found.Name; _validationRegExp = found.validationRegExp; - _DataTypeId = found.DataTypeId; + _DataTypeId = found.dataTypeId; _contenttypeid = found.contentTypeId; - _description = found.description; + _description = found.Description; } #endregion From a3c7b1fcfee6a10da3cb456e0fdaaa69afb2af58 Mon Sep 17 00:00:00 2001 From: Richard Soeteman Date: Mon, 6 Feb 2017 11:51:44 +0100 Subject: [PATCH 2/2] Fixed issue U4-9494 --- src/umbraco.cms/businesslogic/propertytype/propertytype.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/umbraco.cms/businesslogic/propertytype/propertytype.cs b/src/umbraco.cms/businesslogic/propertytype/propertytype.cs index a6dbf440ec..8d5f538fd9 100644 --- a/src/umbraco.cms/businesslogic/propertytype/propertytype.cs +++ b/src/umbraco.cms/businesslogic/propertytype/propertytype.cs @@ -72,6 +72,7 @@ namespace umbraco.cms.businesslogic.propertytype _tabId = _propertyTypeGroup; } + //Fixed issue U4-9493 Case issues _sortOrder = found.sortOrder; _alias = found.Alias; _name = found.Name;