fix auto form lol

This commit is contained in:
Adam D. Ruppe 2011-08-14 22:32:07 -04:00
parent 22553a1d83
commit fbcc55f7e4
1 changed files with 2 additions and 0 deletions

2
web.d
View File

@ -1000,6 +1000,8 @@ void run(Provider)(Cgi cgi, Provider instantiation, int pathInfoStartingPoint =
if(fun.createForm !is null) {
// go ahead and use it to make the form page
auto doc = fun.createForm(cgi.requestMethod == Cgi.RequestMethod.POST ? cgi.post : cgi.get);
form = doc.requireSelector!Form("form");
} else {
Parameter[] params = fun.parameters.dup;
foreach(i, p; fun.parameters) {