Fixing typo

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2012-01-27 17:47:41 -08:00
parent 8b83f79ca6
commit 05d740ef11
2 changed files with 3 additions and 3 deletions

View File

@@ -9,13 +9,13 @@ namespace Orchard.Mvc.Routes {
public class RoutePublisher : IRoutePublisher { public class RoutePublisher : IRoutePublisher {
private readonly RouteCollection _routeCollection; private readonly RouteCollection _routeCollection;
private readonly ShellSettings _shellSettings; private readonly ShellSettings _shellSettings;
private readonly WorkContextAccessor _workContextAccessor; private readonly IWorkContextAccessor _workContextAccessor;
private readonly IRunningShellTable _runningShellTable; private readonly IRunningShellTable _runningShellTable;
public RoutePublisher( public RoutePublisher(
RouteCollection routeCollection, RouteCollection routeCollection,
ShellSettings shellSettings, ShellSettings shellSettings,
WorkContextAccessor workContextAccessor, IWorkContextAccessor workContextAccessor,
IRunningShellTable runningShellTable) { IRunningShellTable runningShellTable) {
_routeCollection = routeCollection; _routeCollection = routeCollection;
_shellSettings = shellSettings; _shellSettings = shellSettings;

View File

@@ -17,7 +17,7 @@ namespace Orchard.Mvc.Routes {
private readonly IRunningShellTable _runningShellTable; private readonly IRunningShellTable _runningShellTable;
private readonly UrlPrefix _urlPrefix; private readonly UrlPrefix _urlPrefix;
public ShellRoute(RouteBase route, ShellSettings shellSettings, WorkContextAccessor workContextAccessor, IRunningShellTable runningShellTable) { public ShellRoute(RouteBase route, ShellSettings shellSettings, IWorkContextAccessor workContextAccessor, IRunningShellTable runningShellTable) {
_route = route; _route = route;
_shellSettings = shellSettings; _shellSettings = shellSettings;
_runningShellTable = runningShellTable; _runningShellTable = runningShellTable;