Author: ajaquith
Date: Wed Oct  1 20:43:02 2008
New Revision: 701001

URL: http://svn.apache.org/viewvc?rev=701001&view=rev
Log:
[JSPWIKI-386] Custom LoginModules were not being configured correctly. Thanks 
to Peter Hormanns for reporting this.

Modified:
    incubator/jspwiki/trunk/ChangeLog
    incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java
    
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/AuthenticationManager.java

Modified: incubator/jspwiki/trunk/ChangeLog
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/ChangeLog?rev=701001&r1=701000&r2=701001&view=diff
==============================================================================
--- incubator/jspwiki/trunk/ChangeLog (original)
+++ incubator/jspwiki/trunk/ChangeLog Wed Oct  1 20:43:02 2008
@@ -1,3 +1,10 @@
+2008-10-01  Andrew Jaquith <ajaquith AT apache DOT org>
+
+        * 2.8.0-beta-16
+
+        * [JSPWIKI-386] Custom LoginModules were not being configured 
correctly.
+        Thanks to Peter Hormanns for reporting this.
+
 2008-10-01  Dirk Frederickx <[EMAIL PROTECTED]>
 
         * 2.8.0-beta-15

Modified: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java?rev=701001&r1=701000&r2=701001&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java (original)
+++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java Wed Oct  1 
20:43:02 2008
@@ -77,7 +77,7 @@
      *  <p>
      *  If the build identifier is empty, it is not added.
      */
-    public static final String     BUILD         = "15";
+    public static final String     BUILD         = "16";
     
     /**
      *  This is the generic version string you should use

Modified: 
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/AuthenticationManager.java
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/AuthenticationManager.java?rev=701001&r1=701000&r2=701001&view=diff
==============================================================================
--- 
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/AuthenticationManager.java 
(original)
+++ 
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/AuthenticationManager.java 
Wed Oct  1 20:43:02 2008
@@ -371,7 +371,7 @@
                 password );
         
         // Execute the user's specified login module
-        Set<Principal> principals = doJAASLogin( 
UserDatabaseLoginModule.class, handler, m_loginModuleOptions );
+        Set<Principal> principals = doJAASLogin( m_loginModuleClass, handler, 
m_loginModuleOptions );
         if (principals.size() > 0)
         {
             fireEvent(WikiSecurityEvent.LOGIN_AUTHENTICATED, 
getLoginPrincipal( principals ), session );


Reply via email to