diff --git a/umbraco/presentation/install/utills/p.aspx.cs b/umbraco/presentation/install/utills/p.aspx.cs index b7ce083302..d778ff90d0 100644 --- a/umbraco/presentation/install/utills/p.aspx.cs +++ b/umbraco/presentation/install/utills/p.aspx.cs @@ -14,6 +14,12 @@ namespace umbraco.presentation.install.utills protected void Page_Load(object sender, EventArgs e) { + // Stop Caching in IE + Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache); + + // Stop Caching in Firefox + Response.Cache.SetNoStore(); + string feed = Request.QueryString["feed"]; string url = "http://our.umbraco.org/html/twitter";