diff --git a/src/Orchard.Web/Modules/Orchard.Search/Views/Admin/Index.cshtml b/src/Orchard.Web/Modules/Orchard.Search/Views/Admin/Index.cshtml index faf8c7cb2..ee24971d5 100644 --- a/src/Orchard.Web/Modules/Orchard.Search/Views/Admin/Index.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Search/Views/Admin/Index.cshtml @@ -3,7 +3,7 @@ Layout.Title = pageTitle; } -@using (Html.BeginFormAntiForgeryPost()) { +@using (Html.BeginForm("index", "admin", new { area = "Orchard.Search" }, FormMethod.Get)) { @Html.TextBox("searchText", (string)Model.SearchText, new { @class = "text textMedium", autofocus = "autofocus" })