Renamed config interfaces properly with Section suffix, re-implemented the For<T> UmbracoConfiguration method to retreive specific settings... might use this entirely instead of the nested access as it might make it easier to mock.

This commit is contained in:
Shannon
2013-09-16 17:39:45 +10:00
parent bd644bc707
commit b043ee577f
85 changed files with 540 additions and 520 deletions

View File

@@ -27,7 +27,7 @@ namespace umbraco.presentation
void IHttpModule.Init(HttpApplication context)
{
if (UmbracoConfiguration.Current.UmbracoSettings.ViewstateMoverModule.Enable)
if (UmbracoConfiguration.Current.UmbracoSettings.ViewStateMoverModule.Enable)
{
context.BeginRequest += new EventHandler(context_BeginRequest);
}