mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-11 00:14:50 +03:00
Bugfix: base64_decode() second parameter must be true
This commit is contained in:
parent
529223a43e
commit
a022f90cef
1 changed files with 1 additions and 1 deletions
|
|
@ -584,7 +584,7 @@ abstract class Utils
|
|||
|
||||
public static function UrlSafeBase64Decode(string $sValue) : string
|
||||
{
|
||||
return \base64_decode(\strtr($sValue, '-_', '+/'), '=');
|
||||
return \base64_decode(\strtr($sValue, '-_', '+/'), true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue