Revert "Example of the cookie option"

This reverts commit 93a35c251b.
This commit is contained in:
Min-Soo Kim 2018-08-02 00:35:52 +09:00
parent 93a35c251b
commit 25d2e4892a
10 changed files with 4 additions and 36 deletions

View file

@ -1056,7 +1056,7 @@ function setCookie(name, value, expire, path) {
var s_cookie = name + "=" + escape(value) +
((!expire) ? "" : ("; expires=" + expire.toGMTString())) +
"; path=" + ((!path) ? "/" : path) +
((cookie_ssl) ? ";secure" : "");
((enforce_ssl) ? ";secure" : "");
document.cookie = s_cookie;
}