DO NOT DOWNLOAD - GET THE STABLE SOURCE FROM THE DOWNLOADS TAB

Small update to tags datatype auto complete handler

[TFS Changeset #64432]
This commit is contained in:
starfighter83
2010-03-04 11:44:58 +00:00
parent 570c792341
commit a438b97be0

View File

@@ -18,7 +18,6 @@ namespace umbraco.presentation.umbraco.webservices
public void ProcessRequest(HttpContext context)
{
Authorize();
context.Response.ContentType = "text/plain";
int count = 2;
@@ -26,8 +25,6 @@ namespace umbraco.presentation.umbraco.webservices
string group = context.Request.QueryString["group"];
string id = context.Request.QueryString["id"];
//fallback...
string sql;
IRecordsReader rr;
@@ -94,12 +91,7 @@ namespace umbraco.presentation.umbraco.webservices
}
}
public static void Authorize()
{
if (!BasePages.BasePage.ValidateUserContextID(BasePages.BasePage.umbracoUserContextID))
throw new Exception("Client authorization failed. User is not logged in");
}
public bool IsReusable
{