- reformatted array a bit
- double-quote to single
This commit is contained in:
Roland Häder 2022-09-15 01:43:51 +02:00
parent 241c221e4b
commit e9a8882f84
No known key found for this signature in database
GPG Key ID: C82EDE5DDFA0BA77
1 changed files with 6 additions and 6 deletions

View File

@ -2839,7 +2839,7 @@ class Diaspora
public static function buildMagicEnvelope(string $msg, array $user): string
{
$b64url_data = Strings::base64UrlEncode($msg);
$data = str_replace(["\n", "\r", " ", "\t"], ['', '', '', ''], $b64url_data);
$data = str_replace(["\n", "\r", ' ', "\t"], ['', '', '', ''], $b64url_data);
$key_id = Strings::base64UrlEncode(self::myHandle($user));
$type = 'application/xml';