An alternative to UBB.threads
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

35 lines
823 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using FLocal.Common.dataobjects;
using FLocal.Importer;
using System.Text.RegularExpressions;
using FLocal.Core;
using FLocal.Common;
using FLocal.Common.actions;
using System.Web;
namespace FLocal.IISHandler.handlers.request.avatars {
class RemoveHandler : AbstractPostHandler {
protected override string templateName {
get {
return "result/AvatarRemoved.xslt";
}
}
protected override XElement[] Do(WebContext context) {
Upload upload = Upload.LoadById(int.Parse(context.httprequest.Form["uploadId"]));
AvatarsSettings.RemoveAvatar(context.account, upload);
return new XElement[] {
new XElement("uploadedId", upload.id)
};
}
}
}