Files
Umbraco-CMS/umbraco/presentation/UmbracoResponse.cs
slace 8f6415abee DO NOT DOWNLOAD. DOWNLOAD LATEST STABLE FROM THE RELEASE TAB
No these aren't changes to make the demos work at CG09. Move along

[TFS Changeset #55237]
2009-06-21 19:12:55 +00:00

16 lines
343 B
C#

using System;
using System.Web;
using umbraco.presentation.LiveEditing;
using umbraco.BasePages;
using umbraco.cms.businesslogic.web;
namespace umbraco.presentation
{
public class UmbracoResponse : HttpResponseWrapper
{
public UmbracoResponse(HttpResponse response) : base(response)
{
}
}
}