mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-12-03 03:58:13 +08:00
Fixing typo
--HG-- branch : 1.x
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user