From a0e76bce62b2ca54870426a49d256cd13eb2f851 Mon Sep 17 00:00:00 2001 From: leekelleher Date: Thu, 21 Jun 2012 07:33:47 -0100 Subject: [PATCH] Minor issue with the new Allowed Templates radiobutton-list, it broke saving content. Fixes workitem:30846 --- umbraco/presentation/umbraco/editContent.aspx.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco/presentation/umbraco/editContent.aspx.cs b/umbraco/presentation/umbraco/editContent.aspx.cs index d5b0269c0b..87f329c0b5 100644 --- a/umbraco/presentation/umbraco/editContent.aspx.cs +++ b/umbraco/presentation/umbraco/editContent.aspx.cs @@ -477,7 +477,7 @@ namespace umbraco.cms.presentation bool selected = false; foreach (cms.businesslogic.template.Template t in documentType.allowedTemplates) { - ListItem tTemp = new ListItem(string.Format("{0} {1}", t.Text, umbraco.cms.helpers.DeepLink.GetAnchor(DeepLinkType.Template, t.Id.ToString(), true), t.Id.ToString())); + ListItem tTemp = new ListItem(string.Format("{0} {1}", t.Text, umbraco.cms.helpers.DeepLink.GetAnchor(DeepLinkType.Template, t.Id.ToString(), true)), t.Id.ToString()); if (t.Id == defaultTemplate) { tTemp.Selected = true;