Fix bug with session.login(name, pw) always returning false

This commit is contained in:
hns 2009-09-11 13:14:06 +00:00
parent 473b05c77b
commit 6049832b09

View file

@ -108,6 +108,7 @@ public class Session implements Serializable {
if (app.loginSession(userName, password, this)) { if (app.loginSession(userName, password, this)) {
lastModified = System.currentTimeMillis(); lastModified = System.currentTimeMillis();
modifiedInRequest = true; modifiedInRequest = true;
return true;
} }
return false; return false;
} }