matomo-org/matomo

E-Mail addresses with special characters are not working

Open

#11.796 geöffnet am 15. Juni 2017

Auf GitHub ansehen
 (3 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)PHP (2.847 Forks)batch import
BugHelp wanted

Repository-Metriken

Stars
 (21.513 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 8T 11h) (106 gemergte PRs in 30 T)

Beschreibung

If one tries to add a new user with the email address john's.email@example.com piwik returns The email doesn't have a valid format. even though the address is perfectly valid. A var_dump($emailAddress) in this line shows that the all special characters get converted to HTML entities.

  • john's.email@example.com => john's.email@example.com
  • "very.unusual.@.unusual.com"@example.com => "very.unusual.@.unusual.com"@example.com
  • !#$%&'*+-/=?^_{|}~@example.com => !#$%&'*+-/=?^_{|}~@example.com

Contributor Guide