#17867: OrchardControllerFactory exception on 404s

--HG--
branch : 1.x
This commit is contained in:
Dave Reed
2011-05-25 12:03:30 -07:00
parent e137d146db
commit f10f1215e6
3 changed files with 1 additions and 6 deletions

View File

@@ -2,8 +2,6 @@
@{
Style.Require("ContentTypesAdmin");
Script.Require("jQuery");
Script.Include("admin.js");
Layout.Title = T("Edit Content Type").ToString();
}

View File

@@ -2,8 +2,6 @@
@{
Style.Require("ContentTypesAdmin");
Script.Require("jQuery");
Script.Include("admin.js");
Layout.Title = T("Edit Part").ToString();
}

View File

@@ -56,7 +56,6 @@ namespace Orchard.Mvc {
return (Type) info.Metadata["ControllerType"];
}
// fail as appropriate for MVC's expectations
return null;
}
@@ -74,7 +73,7 @@ namespace Orchard.Mvc {
}
// fail as appropriate for MVC's expectations
return null;
return base.GetControllerInstance(requestContext, controllerType);
}
}
}