Completes: U4-6871 CoreBootManager.CreateApplicationContext & CoreBootManager.CreateApplicationCache returns the instance instead of setting the singleton

This commit is contained in:
Shannon
2015-07-23 18:26:56 +02:00
parent 8c871a6172
commit 37076fa4eb
3 changed files with 44 additions and 31 deletions

View File

@@ -218,10 +218,10 @@ namespace Umbraco.Web
/// <summary>
/// Creates the application cache based on the HttpRuntime cache
/// </summary>
protected override void CreateApplicationCache()
protected override CacheHelper CreateApplicationCache()
{
//create a web-based cache helper
ApplicationCache = new CacheHelper();
return new CacheHelper();
}
/// <summary>