automatic forms were broken by typo!

This commit is contained in:
Adam D. Ruppe 2011-12-10 21:30:43 -05:00
parent f89f3d3e41
commit db7882c669
1 changed files with 7 additions and 1 deletions

8
web.d
View File

@ -1094,7 +1094,7 @@ void run(Provider)(Cgi cgi, Provider instantiation, size_t pathInfoStartingPoint
params[i].value = value;
}
form = createAutomaticForm(new Document("<html></html", true, true), fun);// params, beautify(fun.originalName));
form = createAutomaticForm(new Document("<html></html>", true, true), fun);// params, beautify(fun.originalName));
foreach(k, v; cgi.get)
form.setValue(k, v);
@ -2281,6 +2281,12 @@ class Session {
_sessionId = info[0];
auto hash = info[1];
if(_sessionId.length == 0) {
// there is no session
_readOnly = true;
return;
}
// FIXME: race condition if the session changes?
enforce(hashToString(SHA256(readText(getFilePath()))) == hash);
_readOnly = true;