forgot csrf token on automatic form

This commit is contained in:
Adam D. Ruppe 2011-12-02 21:49:45 -05:00
parent 2f17188201
commit a128370a24
1 changed files with 2 additions and 0 deletions

2
web.d
View File

@ -1072,6 +1072,8 @@ void run(Provider)(Cgi cgi, Provider instantiation, size_t pathInfoStartingPoint
form = createAutomaticForm(new Document, fun);// params, beautify(fun.originalName));
foreach(k, v; cgi.get)
form.setValue(k, v);
instantiation.addCsrfTokens(form);
form.setValue("envelopeFormat", envelopeFormat);
auto n = form.getElementById("function-name");