mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-12-02 19:44:02 +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 {
|
||||
private readonly RouteCollection _routeCollection;
|
||||
private readonly ShellSettings _shellSettings;
|
||||
private readonly WorkContextAccessor _workContextAccessor;
|
||||
private readonly IWorkContextAccessor _workContextAccessor;
|
||||
private readonly IRunningShellTable _runningShellTable;
|
||||
|
||||
public RoutePublisher(
|
||||
RouteCollection routeCollection,
|
||||
ShellSettings shellSettings,
|
||||
WorkContextAccessor workContextAccessor,
|
||||
IWorkContextAccessor workContextAccessor,
|
||||
IRunningShellTable runningShellTable) {
|
||||
_routeCollection = routeCollection;
|
||||
_shellSettings = shellSettings;
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace Orchard.Mvc.Routes {
|
||||
private readonly IRunningShellTable _runningShellTable;
|
||||
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;
|
||||
_shellSettings = shellSettings;
|
||||
_runningShellTable = runningShellTable;
|
||||
|
||||
Reference in New Issue
Block a user