Fix broken cookie handling on PHP side #20
No reviewers
Labels
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
typo3/watchlist!20
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix-cookie-php-side"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fix broken cookie path within middleware. For some reason we used the
/typo3/path while storing cookies server side. But we used/in JavaScript. That didn't play together and was fixed to always be/for now, but it should be configurable in general. The fix revealed that the detection of whether to store a cookie was broken, which was fixed within the corresponding service.Furthermore the dates how long the cookie should be stored was different. We now always use 7 days.