We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in file Jwt.php
$b64 = str_replace(array('+', '/', '\r', '\n', '='), array('-', '_'), $b64);
the '\r' and '\n' won't match new lines
single quotation mark will match \n as string(2) '\n'
to match new line should use "\n" instead
The text was updated successfully, but these errors were encountered:
bf53ceb
Thank you for catching this!
Sorry, something went wrong.
fixes bshaffer#301 - ensures newlines are replaced as expected in url…
4e18a4b
…SafeB64Encode function
No branches or pull requests
in file Jwt.php
the '\r' and '\n' won't match new lines
single quotation mark will match \n as string(2) '\n'
to match new line should use "\n" instead
The text was updated successfully, but these errors were encountered: