From e2e9e2afa97884dd2e9d6c31dd0a343fb070ec9d Mon Sep 17 00:00:00 2001 From: nduarte <> Date: Fri, 30 Aug 2013 13:46:30 +0200 Subject: [PATCH] #20003 : Admin Search Paging Results Broken (Orchard 1.7) Work Item: 20003 --- src/Orchard.Web/Modules/Orchard.Search/Views/Admin/Index.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" })