Skip to content

Commit

Permalink
Form-Login works now.
Browse files Browse the repository at this point in the history
For _p Pages is httpauth still needed.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2194 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
allo committed Jun 11, 2006
1 parent 1112341 commit ec36174
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/de/anomic/data/userDB.java
Expand Up @@ -202,6 +202,7 @@ public Entry proxyAuth(String auth, String ip){
if(entry == null){
return null;
}
entry.updateLastAccess(false);
this.ipUsers.put(ip, entry.getUserName());
return entry;
}
Expand Down Expand Up @@ -239,6 +240,7 @@ public Entry passwordAuth(String user, String password, String ip){
if(entry == null){
return null;
}
entry.updateLastAccess(false);
this.ipUsers.put(ip, entry.getUserName());
return entry;
}
Expand Down

0 comments on commit ec36174

Please sign in to comment.