Bugfix: base64_decode() second parameter must be true

This commit is contained in:
the-djmaze 2023-06-19 14:17:06 +02:00
parent 529223a43e
commit a022f90cef

View file

@ -584,7 +584,7 @@ abstract class Utils
public static function UrlSafeBase64Decode(string $sValue) : string public static function UrlSafeBase64Decode(string $sValue) : string
{ {
return \base64_decode(\strtr($sValue, '-_', '+/'), '='); return \base64_decode(\strtr($sValue, '-_', '+/'), true);
} }
/** /**