352565 - cookie httponly flag ignored

This commit is contained in:
Jan Bartel 2011-08-15 17:13:51 +10:00
parent 050cb83b35
commit a8d69f44c6
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -125,7 +125,7 @@ public class Response implements HttpServletResponse
cookie.getMaxAge(),
cookie.getComment(),
cookie.getSecure(),
false,//cookie.isHttpOnly(),
cookie.isHttpOnly(),
cookie.getVersion());
}