Skip to content
Snippets Groups Projects
Commit e132b698 authored by Peter Rotich's avatar Peter Rotich
Browse files

Merge pull request #876 from greezybacon/issue/875


Use case-insensitive matching on email address

Reviewed-By: default avatarPeter Rotich <peter@osticket.com>
parents b692e5e1 08398509
No related branches found
No related tags found
No related merge requests found
......@@ -176,7 +176,7 @@ class Ticket {
function getAuthToken() {
# XXX: Support variable email address (for CCs)
return md5($this->getId() . $this->getEmail() . SECRET_SALT);
return md5($this->getId() . strtolower($this->getEmail()) . SECRET_SALT);
}
function getName() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment