mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-24 23:57:52 +08: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…
Reference in a new issue