352565 - cookie httponly flag ignored
This commit is contained in:
parent
050cb83b35
commit
a8d69f44c6
|
@ -1,6 +1,7 @@
|
|||
jetty-8.0.0.RC0-SNAPSHOT
|
||||
+ Merge from jetty-7.4.3
|
||||
+ Enable annotations by default
|
||||
+ 352565 cookie httponly flag ignored
|
||||
+ 353285 ServletSecurity annotation ignored
|
||||
|
||||
jetty-8.0.0.M3 27 May 2011
|
||||
|
|
|
@ -125,7 +125,7 @@ public class Response implements HttpServletResponse
|
|||
cookie.getMaxAge(),
|
||||
cookie.getComment(),
|
||||
cookie.getSecure(),
|
||||
false,//cookie.isHttpOnly(),
|
||||
cookie.isHttpOnly(),
|
||||
cookie.getVersion());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue