|
@@ -589,9 +589,8 @@ public class AuthenticationFilter implements Filter {
|
|
StringBuilder sb = new StringBuilder(AuthenticatedURL.AUTH_COOKIE)
|
|
StringBuilder sb = new StringBuilder(AuthenticatedURL.AUTH_COOKIE)
|
|
.append("=");
|
|
.append("=");
|
|
if (token != null && token.length() > 0) {
|
|
if (token != null && token.length() > 0) {
|
|
- sb.append(token);
|
|
|
|
|
|
+ sb.append("\"").append(token).append("\"");
|
|
}
|
|
}
|
|
- sb.append("; Version=1");
|
|
|
|
|
|
|
|
if (path != null) {
|
|
if (path != null) {
|
|
sb.append("; Path=").append(path);
|
|
sb.append("; Path=").append(path);
|