Revert "Merge branch 'develop' into develop"

This reverts commit ec54bbd415, reversing
changes made to 9b12e0a71c.
This commit is contained in:
Min-Soo Kim 2018-07-29 11:54:14 +09:00
parent ec54bbd415
commit b62a1322c9
8 changed files with 13 additions and 31 deletions

View file

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