Skip to content

Commit

Permalink
fix isssue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
kminek committed Jul 1, 2020
1 parent ae3019c commit 710079e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EmailObfuscator.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static function obfuscate($email, $text = null, $options = [])
$options = array_merge($defaults, $options);
$email = strtolower($email);
$coded = '';
$unmixedkey = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.@';
$unmixedkey = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.@-';
$inprogresskey = $unmixedkey;
$mixedkey = '';
$unshuffled = strlen($unmixedkey);
Expand Down

0 comments on commit 710079e

Please sign in to comment.