diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2018-08-03 10:52:31 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-08-03 10:52:31 +0200 |
commit | 4faf135d903481cade30c7ade407a78b218f9eda (patch) | |
tree | 5779ffa9e0649c15963e86f87f4fdcd915f7b9a7 | |
parent | 7aca2bdbb1a5a2a972140a16b04d459853e40e4c (diff) | |
download | php-git-4faf135d903481cade30c7ade407a78b218f9eda.tar.gz |
Update UPGRADING.INTERNALS wrt. Same Site Cookies
-rw-r--r-- | UPGRADING.INTERNALS | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index 37beea85e7..d4676d34c2 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -28,6 +28,7 @@ PHP 7.3 INTERNALS UPGRADE NOTES y. zend_constant z. HAVE_ST_BLKSIZE and HAVE_ST_RDEV aa. RETSIGTYPE + bb. php_setcookie 2. Build system changes a. Unix build system changes @@ -174,6 +175,12 @@ PHP 7.3 INTERNALS UPGRADE NOTES aa. RETSIGTYPE has been removed from the generated php_config.h and should be replaced with void. + bb. php_setcookie() now expects an additional samesite argument, and the + url_encode parameter has been moved to the end. The signature is now: + int php_setcookie(zend_string *name, zend_string *value, time_t expires, + zend_string *path, zend_string *domain, int secure, + int httponly, zend_string *samesite, int url_encode); + ======================== 2. Build system changes ======================== |