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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user