[
https://issues.apache.org/jira/browse/WICKET-6484?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Martin Grigorov updated WICKET-6484:
------------------------------------
Fix Version/s: 6.29.0
7.10.0
> Wicket.Cookie.set does not set 'secure' flag
> --------------------------------------------
>
> Key: WICKET-6484
> URL: https://issues.apache.org/jira/browse/WICKET-6484
> Project: Wicket
> Issue Type: Bug
> Components: wicket-extensions
> Affects Versions: 6.25.0
> Reporter: Rakesh A
> Assignee: Martin Grigorov
> Priority: Major
> Fix For: 7.10.0, 6.29.0, 8.0.0-M9
>
>
> Wicket ModalWindow has a functionality where modal dialogs position and size
> are restored using a cookie. This cookie is created in 'modal.js'
> {code:java}
> set: function(name, value, expiredays) {
> var exdate = new Date();
> exdate.setDate(exdate.getDate() + expiredays);
> document.cookie = name + "=" + window.escape(value) +
> ((expiredays === null) ? "" : ";expires="+exdate);
> }
> {code}
> This method doesn't set 'secure' flag if the application is being accessed
> using HTTPS
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)