r9878 - helma/helma/trunk/src/helma/framework/core

[email protected] Fri, 11 Sep 2009 15:14:06 +0200 (CEST)
Newsgroups gmane.comp.java.helma.cvs
Message-ID <20090911131406.BCED13D0E3@mia>
Author: hannes
Date: 2009-09-11 15:14:06 +0200 (Fri, 11 Sep 2009)
New Revision: 9878

Modified:
   helma/helma/trunk/src/helma/framework/core/Session.java
Log:
Fix bug with session.login(name, pw) always returning false

Details at http://dev.helma.org/trac/helma/changeset/9878

Modified: helma/helma/trunk/src/helma/framework/core/Session.java
===================================================================
--- helma/helma/trunk/src/helma/framework/core/Session.java	2009-09-11 12:50:13 UTC (rev 9877)
+++ helma/helma/trunk/src/helma/framework/core/Session.java	2009-09-11 13:14:06 UTC (rev 9878)
@@ -108,6 +108,7 @@
         if (app.loginSession(userName, password, this)) {
             lastModified = System.currentTimeMillis();
             modifiedInRequest = true;
+            return true;
         }
         return false;
     }