Opened 18 months ago
Last modified 18 months ago
#55440 new enhancement
Introduce a wrapper fro setcookie()
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | normal | Version: | |
Component: | General | Keywords: | has-patch |
Focuses: | Cc: |
Description
Recent browsers expect the parameter samesite
to be set. A new parameter sameparty
is on its way too.
The old (PHP < 7.3) setcookie()
signature doesn't accept these new parameters. It's however possible to set them with a hack.
I propose to introduce a new wp_set_cookie()
function to support all versions of PHP. I also propose to introduce a filter in this function. This should help for #37000.
Attachments (1)
Note: See
TracTickets for help on using
tickets.
The first patch is proposed for feedback on the function itself. It doesn't include the replacement of the current calls to
setcookie()
bywp_set_cookie()
.