From 02785eea42247bdfb32d8cd64910de457d937704 Mon Sep 17 00:00:00 2001 From: Richard Soeteman Date: Mon, 6 Feb 2017 11:26:58 +0100 Subject: [PATCH] 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