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