302244 - invalid configuration boolean conversion in FormAuthenticator
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1253 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
ea14de47b7
commit
9a69ad2191
|
@ -10,6 +10,7 @@ jetty-7.0.2-SNAPSHOT
|
|||
+ 298667 DeploymentManager uses ContextProvider and WebAppProvider
|
||||
+ 299455 Enum support in JSONPojoConvertor
|
||||
+ 302198 Rename HttpClient authorization classes to Authentication
|
||||
+ 302244 invalid configuration boolean conversion in FormAuthenticator
|
||||
+ JETTY-776 Make new session-tests module to concentrate all reusable session clustering test code
|
||||
+ JETTY-910 Allow request listeners to access session
|
||||
+ JETTY-1153 System property for UrlEncoded charset
|
||||
|
|
|
@ -99,7 +99,7 @@ public class FormAuthenticator extends LoginAuthenticator
|
|||
if (error!=null)
|
||||
setErrorPage(error);
|
||||
String dispatch=configuration.getInitParameter(FormAuthenticator.__FORM_DISPATCH);
|
||||
_dispatch = dispatch==null?_dispatch:Boolean.getBoolean(dispatch);
|
||||
_dispatch = dispatch==null?_dispatch:Boolean.valueOf(dispatch);
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
|
|
Loading…
Reference in New Issue