diff --git a/src/Orchard.Web/Modules/Orchard.Indexing/Orchard.Indexing.csproj b/src/Orchard.Web/Modules/Orchard.Indexing/Orchard.Indexing.csproj index 63d1f7a76..4a1b81845 100644 --- a/src/Orchard.Web/Modules/Orchard.Indexing/Orchard.Indexing.csproj +++ b/src/Orchard.Web/Modules/Orchard.Indexing/Orchard.Indexing.csproj @@ -59,7 +59,6 @@ - @@ -100,6 +99,7 @@ + diff --git a/src/Orchard.Web/Modules/Orchard.Indexing/ResourceManifest.cs b/src/Orchard.Web/Modules/Orchard.Indexing/ResourceManifest.cs deleted file mode 100644 index f6bcc7f69..000000000 --- a/src/Orchard.Web/Modules/Orchard.Indexing/ResourceManifest.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using Orchard.UI.Resources; - -namespace Orchard.Indexing { - public class ResourceManifest : IResourceManifestProvider { - public void BuildManifests(ResourceManifestBuilder builder) { - builder.Add().DefineStyle("IndexingAdmin").SetUrl("admin.css"); // todo: this does not exist - } - } -} diff --git a/src/Orchard.Web/Modules/Orchard.Indexing/Views/Admin/Index.cshtml b/src/Orchard.Web/Modules/Orchard.Indexing/Views/Admin/Index.cshtml index 21272c6f5..89c56cb3f 100644 --- a/src/Orchard.Web/Modules/Orchard.Indexing/Views/Admin/Index.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Indexing/Views/Admin/Index.cshtml @@ -1,5 +1,4 @@ @model Orchard.Indexing.ViewModels.IndexViewModel -@{ Style.Require("IndexingAdmin"); }

@Html.TitleForPage(T("Search Index Management").ToString())

@using (Html.BeginForm("update", "admin", FormMethod.Post, new {area = "Orchard.Indexing"})) {