You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2022. It is now read-only.
RoundCube 1.3.10 changed their:
Set-Cookie:
headers, to:
set-cookie:
So this match fails:
preg_match_all('/Set-Cookie: (.*)\b/', $response, $cookies);
Simply add the case-insensitive 'i' flag to it, to handle both cases:
preg_match_all('/Set-Cookie: (.*)\b/i', $response, $cookies);