From f7d3f4a9a63de396c9231fd9447a2a4708f85361 Mon Sep 17 00:00:00 2001 From: jasperd Date: Sat, 17 Aug 2013 23:07:41 +0200 Subject: [PATCH] #20029: Fixing invalid empty span tag Work Item: 20029 --- .../Modules/Orchard.Comments/Views/Parts.CommentForm.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Web/Modules/Orchard.Comments/Views/Parts.CommentForm.cshtml b/src/Orchard.Web/Modules/Orchard.Comments/Views/Parts.CommentForm.cshtml index 75f111bae..5e2e93890 100644 --- a/src/Orchard.Web/Modules/Orchard.Comments/Views/Parts.CommentForm.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Comments/Views/Parts.CommentForm.cshtml @@ -27,7 +27,7 @@ else if (WorkContext.CurrentUser == null && !AuthorizedFor(Permissions.AddCommen } else { @Html.ValidationSummary() - + using (Html.BeginFormAntiForgeryPost(Url.Action("Create", "Comment", new { Area = "Orchard.Comments", ReturnUrl = Context.Request.ToUrlString() }), FormMethod.Post, new { @class = "comment-form" })) { if (TempData.ContainsKey("Comments.InvalidCommentEditorShape")) { @Display(TempData["Comments.InvalidCommentEditorShape"]);