Commit 40c575a1 authored by preed%sigkill.com's avatar preed%sigkill.com

Bug 204724 - ExcludeSelf doesn't work with an email containing capital letters;…

Bug 204724 - ExcludeSelf doesn't work with an email containing capital letters; Patch by marcschum@web.de, r=preed/myk,a=myk
parent aaf0f48c
......@@ -637,7 +637,7 @@ sub filterEmailGroup ($$$) {
# If this user is the one who made the change in the first place,
# and they prefer not to receive mail about their own changes,
# filter them from the list.
if (lc($user) eq $nametoexclude && $prefs{'ExcludeSelf'} eq 'on') {
if (lc($user) eq lc($nametoexclude) && $prefs{'ExcludeSelf'} eq 'on') {
push(@excludedAddresses, $user);
next;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment