mirror of https://github.com/adamdruppe/arsd.git
fix auto form lol
This commit is contained in:
parent
22553a1d83
commit
fbcc55f7e4
2
web.d
2
web.d
|
@ -1000,6 +1000,8 @@ void run(Provider)(Cgi cgi, Provider instantiation, int pathInfoStartingPoint =
|
||||||
if(fun.createForm !is null) {
|
if(fun.createForm !is null) {
|
||||||
// go ahead and use it to make the form page
|
// go ahead and use it to make the form page
|
||||||
auto doc = fun.createForm(cgi.requestMethod == Cgi.RequestMethod.POST ? cgi.post : cgi.get);
|
auto doc = fun.createForm(cgi.requestMethod == Cgi.RequestMethod.POST ? cgi.post : cgi.get);
|
||||||
|
|
||||||
|
form = doc.requireSelector!Form("form");
|
||||||
} else {
|
} else {
|
||||||
Parameter[] params = fun.parameters.dup;
|
Parameter[] params = fun.parameters.dup;
|
||||||
foreach(i, p; fun.parameters) {
|
foreach(i, p; fun.parameters) {
|
||||||
|
|
Loading…
Reference in New Issue