From fbcc55f7e4dfd82fa2bb79bf1bd295f984a34a07 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 14 Aug 2011 22:32:07 -0400 Subject: [PATCH] fix auto form lol --- web.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web.d b/web.d index 67fb97c..d7a40e7 100644 --- a/web.d +++ b/web.d @@ -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) {