From 526f2f2e81f3ea31dcf00191157dbc68616cac68 Mon Sep 17 00:00:00 2001 From: perploug Date: Tue, 17 Sep 2013 13:43:47 +0200 Subject: [PATCH] Fixes broken doctype editor --- src/umbraco.cms/businesslogic/datatype/DataTypeDefinition.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/umbraco.cms/businesslogic/datatype/DataTypeDefinition.cs b/src/umbraco.cms/businesslogic/datatype/DataTypeDefinition.cs index 30b91cbc46..ea19520e75 100644 --- a/src/umbraco.cms/businesslogic/datatype/DataTypeDefinition.cs +++ b/src/umbraco.cms/businesslogic/datatype/DataTypeDefinition.cs @@ -314,7 +314,7 @@ namespace umbraco.cms.businesslogic.datatype { base.setupNode(); - using (IRecordsReader dr = SqlHelper.ExecuteReader("select dbType, controlId from cmsDataType where nodeId = '" + this.Id.ToString() + "'")) + using (IRecordsReader dr = SqlHelper.ExecuteReader("select dbType, propertyEditorAlias from cmsDataType where nodeId = '" + this.Id.ToString() + "'")) { if (dr.Read()) {