removes config check on p.aspx since we need it to show the feeds when installer is done.

This commit is contained in:
Shannon Deminick
2013-04-06 00:30:37 +06:00
parent 9736aaafaa
commit 103efbdc27

View File

@@ -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);