cziegeler 2003/10/21 04:52:36
Modified:
src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/acting
LoggedInAction.java
Log:
Fixing the LoggedInAction - bug reported by Frederic Gaus
Revision Changes Path
1.4 +2 -2
cocoon-2.1/src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/acting/LoggedInAction.java
Index: LoggedInAction.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/acting/LoggedInAction.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- LoggedInAction.java 15 Oct 2003 20:47:14 -0000 1.3
+++ LoggedInAction.java 21 Oct 2003 11:52:36 -0000 1.4
@@ -91,7 +91,7 @@
authManager = (AuthenticationManager)
this.manager.lookup(AuthenticationManager.ROLE);
UserHandler handler = authManager.isAuthenticated(handlerName);
if ( handler != null ) {
- map = handler.getContext().getContextInfo();
+ map = EMPTY_MAP;
}
} finally {
this.manager.release( authManager);