From 6049832b09810fff4aeb0dbe5331c9881d9eca14 Mon Sep 17 00:00:00 2001 From: hns Date: Fri, 11 Sep 2009 13:14:06 +0000 Subject: [PATCH] Fix bug with session.login(name, pw) always returning false --- src/helma/framework/core/Session.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helma/framework/core/Session.java b/src/helma/framework/core/Session.java index c3399d7f..91d132ba 100644 --- a/src/helma/framework/core/Session.java +++ b/src/helma/framework/core/Session.java @@ -108,6 +108,7 @@ public class Session implements Serializable { if (app.loginSession(userName, password, this)) { lastModified = System.currentTimeMillis(); modifiedInRequest = true; + return true; } return false; }