mirror of https://github.com/adamdruppe/arsd.git
automatic forms were broken by typo!
This commit is contained in:
parent
f89f3d3e41
commit
db7882c669
8
web.d
8
web.d
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue