diff --git a/src/Orchard/Mvc/Html/LayoutExtensions.cs b/src/Orchard/Mvc/Html/LayoutExtensions.cs
index 8b04462ee..87fc99438 100644
--- a/src/Orchard/Mvc/Html/LayoutExtensions.cs
+++ b/src/Orchard/Mvc/Html/LayoutExtensions.cs
@@ -86,9 +86,9 @@ namespace Orchard.Mvc.Html {
manager.Render(html, html.ViewData.Model.Zones, null, null, except);
}
- public static void ZoneBody(this HtmlHelper html, string zoneName) where TModel : BaseViewModel {
- html.Zone(zoneName, () => html.RenderBody());
- }
+ //public static void ZoneBody(this HtmlHelper html, string zoneName) where TModel : BaseViewModel {
+ // html.Zone(zoneName, () => html.RenderBody());
+ //}
public static void RegisterMeta(this HtmlHelper html, string name, string content) {
html.Resolve().RegisterMeta(name, content);
diff --git a/src/Orchard/Mvc/ViewModels/AdaptedViewModel.cs b/src/Orchard/Mvc/ViewModels/AdaptedViewModel.cs
deleted file mode 100644
index 926709ee3..000000000
--- a/src/Orchard/Mvc/ViewModels/AdaptedViewModel.cs
+++ /dev/null
@@ -1,66 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web.Mvc;
-using Orchard.Security;
-using Orchard.UI.Navigation;
-using Orchard.UI.Notify;
-using Orchard.UI.Zones;
-
-namespace Orchard.Mvc.ViewModels {
- class AdaptedViewModel : BaseViewModel {
- private readonly Property _zones;
- private readonly Property> _menu;
- private readonly Property> _messages;
- private readonly Property _currentUser;
-
- public AdaptedViewModel(ViewDataDictionary original) {
- _zones = new Property(original, "Zones", () => new ZoneCollection());
- _menu = new Property>(original, "Menu", Enumerable.Empty