Bug 204724 - ExcludeSelf doesn't work with an email containing capital letters; Patch by marcschum@web.de, r=preed/myk,a=myk

git-svn-id: svn://10.0.0.236/trunk@142367 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
preed%sigkill.com
2003-05-13 05:29:28 +00:00
parent f33532fac8
commit 5f67d44c83

View File

@@ -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;
}