From 0483275d3615abf40bfe678fd549ab1fcccd6454 Mon Sep 17 00:00:00 2001 From: Sebastien Ros Date: Thu, 14 Oct 2010 17:14:58 -0700 Subject: [PATCH] Corrected ContentType List action --HG-- branch : dev --- .../Modules/Orchard.ContentTypes/Controllers/AdminController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Web/Modules/Orchard.ContentTypes/Controllers/AdminController.cs b/src/Orchard.Web/Modules/Orchard.ContentTypes/Controllers/AdminController.cs index 916f4160c..0e8f9ab48 100644 --- a/src/Orchard.Web/Modules/Orchard.ContentTypes/Controllers/AdminController.cs +++ b/src/Orchard.Web/Modules/Orchard.ContentTypes/Controllers/AdminController.cs @@ -27,7 +27,7 @@ namespace Orchard.ContentTypes.Controllers { #region Types public ActionResult List() { - return View(new ListContentTypesViewModel { + return View("List", new ListContentTypesViewModel { Types = _contentDefinitionService.GetTypes() }); }