Index: branches/5.3.x/core/kernel/session/session.php =================================================================== diff -u -N -r15677 -r15912 --- branches/5.3.x/core/kernel/session/session.php (.../session.php) (revision 15677) +++ branches/5.3.x/core/kernel/session/session.php (.../session.php) (revision 15912) @@ -1,6 +1,6 @@ CookieDomain != $old_style_domain) { // new style cookie domain -> delete old style cookie to prevent infinite redirect - setcookie($name, $encrypted_value, adodb_mktime() - 3600, $this->CookiePath, $old_style_domain, $this->CookieSecure); + setcookie($name, $encrypted_value, adodb_mktime() - 3600, $this->CookiePath, $old_style_domain, $this->CookieSecure, true); } } - setcookie($name, $encrypted_value, $expires, $this->CookiePath, $this->CookieDomain, $this->CookieSecure); + setcookie($name, $encrypted_value, $expires, $this->CookiePath, $this->CookieDomain, $this->CookieSecure, true); } function Check()