No these aren't changes to make the demos work at CG09. Move along [TFS Changeset #55237]
16 lines
343 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|