From 103efbdc2748988f5a1dde39f0f6f8a7588a226d Mon Sep 17 00:00:00 2001 From: Shannon Deminick Date: Sat, 6 Apr 2013 00:30:37 +0600 Subject: [PATCH] removes config check on p.aspx since we need it to show the feeds when installer is done. --- .../umbraco.presentation/install/utills/p.aspx.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Umbraco.Web/umbraco.presentation/install/utills/p.aspx.cs b/src/Umbraco.Web/umbraco.presentation/install/utills/p.aspx.cs index c216c7131f..6ebf7a1e7f 100644 --- a/src/Umbraco.Web/umbraco.presentation/install/utills/p.aspx.cs +++ b/src/Umbraco.Web/umbraco.presentation/install/utills/p.aspx.cs @@ -15,13 +15,6 @@ namespace umbraco.presentation.install.utills { protected void Page_Load(object sender, EventArgs e) { - - //if its not configured then we can continue - if (ApplicationContext.Current == null || ApplicationContext.Current.IsConfigured) - { - throw new AuthenticationException("The application is already configured"); - } - // Stop Caching in IE Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);