From ef156af3ffd610d9f5d657016024d0a89dd6c11c Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" Date: Fri, 31 Aug 2001 21:40:33 +0000 Subject: [PATCH] Fix for bug 97764: Fixes errant sending of mail on attachment changes to users who do not want to receive mail about their own changes. Patch by Jake . r=myk@mozilla.org; no second review needed. git-svn-id: svn://10.0.0.236/trunk@102103 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/attachment.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/attachment.cgi b/mozilla/webtools/bugzilla/attachment.cgi index e0b7237348d..9308b1d7378 100755 --- a/mozilla/webtools/bugzilla/attachment.cgi +++ b/mozilla/webtools/bugzilla/attachment.cgi @@ -499,7 +499,7 @@ sub update #system ("./processmail", $bugid , $::userid); #my $mailresults = `./processmail $bugid $::userid`; my $mailresults = ''; - open(PMAIL, "-|") or exec('./processmail', $bugid, $::userid); + open(PMAIL, "-|") or exec('./processmail', $bugid, DBID_to_name($::userid)); $mailresults .= $_ while ; close(PMAIL);