From 350cbbd183414a41cf0886967c918d9482e47fea Mon Sep 17 00:00:00 2001 From: HermesSbicego-Laser Date: Wed, 19 Oct 2016 17:40:58 +0200 Subject: [PATCH] - typo chaching > caching --- .../Orchard.OutputCache/Filters/OutputCacheFilter.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Orchard.Web/Modules/Orchard.OutputCache/Filters/OutputCacheFilter.cs b/src/Orchard.Web/Modules/Orchard.OutputCache/Filters/OutputCacheFilter.cs index 8df84b69f..b8ddff839 100644 --- a/src/Orchard.Web/Modules/Orchard.OutputCache/Filters/OutputCacheFilter.cs +++ b/src/Orchard.Web/Modules/Orchard.OutputCache/Filters/OutputCacheFilter.cs @@ -41,7 +41,7 @@ namespace Orchard.OutputCache.Filters { private readonly ICacheService _cacheService; private readonly ISignals _signals; private readonly ShellSettings _shellSettings; - private readonly ICachingEventHandler _chachingEvents; + private readonly ICachingEventHandler _cachingEvents; private bool _isDisposed = false; public ILogger Logger { get; set; } @@ -57,7 +57,7 @@ namespace Orchard.OutputCache.Filters { ICacheService cacheService, ISignals signals, ShellSettings shellSettings, - ICachingEventHandler chachingEvents) { + ICachingEventHandler cachingEvents) { _cacheManager = cacheManager; _cacheStorageProvider = cacheStorageProvider; @@ -69,7 +69,7 @@ namespace Orchard.OutputCache.Filters { _cacheService = cacheService; _signals = signals; _shellSettings = shellSettings; - _chachingEvents = chachingEvents; + _cachingEvents = cachingEvents; Logger = NullLogger.Instance; } @@ -615,7 +615,7 @@ namespace Orchard.OutputCache.Filters { //make CacheKey morphable by external modules try { - keyBuilder = _chachingEvents.ParticipateInCacheKey(keyBuilder); + keyBuilder = _cachingEvents.ParticipateInCacheKey(keyBuilder); } catch (UnauthorizedAccessException ex) { throw new UnauthorizedAccessException(); } catch { }