Corrected blog post handler for background tasks

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-06-03 14:54:35 -07:00
parent 4f711f1e23
commit 5084d2b4dd

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Specialized;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
@@ -82,6 +83,13 @@ namespace Orchard.Mvc {
public override bool IsAuthenticated {
get { return false; }
}
// empty collection provided for background operation
public override NameValueCollection Form {
get {
return new NameValueCollection();
}
}
}
}
}