From db7882c66908ba0a7ed392d712e0723e87b0464d Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 10 Dec 2011 21:30:43 -0500 Subject: [PATCH] automatic forms were broken by typo! --- web.d | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/web.d b/web.d index d1fb3b2..615ef9b 100644 --- a/web.d +++ b/web.d @@ -1094,7 +1094,7 @@ void run(Provider)(Cgi cgi, Provider instantiation, size_t pathInfoStartingPoint params[i].value = value; } - form = createAutomaticForm(new Document("", 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;