diff options
author | preed%sigkill.com <> | 2003-05-13 14:29:28 +0200 |
---|---|---|
committer | preed%sigkill.com <> | 2003-05-13 14:29:28 +0200 |
commit | 40c575a162597f6b1c84e5b5bac9b1238f965abc (patch) | |
tree | 9a1a35e8eacd1092cf9e4dfb4befbf5ec52f6f4d /Bugzilla | |
parent | aaf0f48c0ba670c12a94e9e4de1046db7bf59e5b (diff) | |
download | bugzilla-40c575a162597f6b1c84e5b5bac9b1238f965abc.tar.gz bugzilla-40c575a162597f6b1c84e5b5bac9b1238f965abc.tar.xz |
Bug 204724 - ExcludeSelf doesn't work with an email containing capital letters; Patch by marcschum@web.de, r=preed/myk,a=myk
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/BugMail.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 55c88004b..da25b6a70 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -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; } |