Skip to content

Commit

Permalink
Strip even more whitespace characters that do not belogn in b64 strings
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Jul 17, 2023
1 parent 89a31ba commit 8d293de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Base64ElementTrait.php
Expand Up @@ -32,7 +32,7 @@ trait Base64ElementTrait
*/
protected function sanitizeContent(string $content): string
{
return str_replace(["\r", "\n", "\t", ' '], '', $content);
return str_replace(["\f", "\r", "\n", "\t", "\v", ' '], '', $content);
}


Expand Down

0 comments on commit 8d293de

Please sign in to comment.