diff options
author | justdave%syndicomm.com <> | 2003-02-10 14:26:37 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2003-02-10 14:26:37 +0000 |
commit | 04c45c7227753483c999e5a751c7b8f12abc0183 (patch) | |
tree | 35d066ba8739238c52dff314c5d97c0b7017c9cc /process_bug.cgi | |
parent | cdc6e3a1a5177e8bcdee48ac5521b91b5fc486d1 (diff) | |
download | bugs-04c45c7227753483c999e5a751c7b8f12abc0183.tar bugs-04c45c7227753483c999e5a751c7b8f12abc0183.tar.gz bugs-04c45c7227753483c999e5a751c7b8f12abc0183.tar.bz2 bugs-04c45c7227753483c999e5a751c7b8f12abc0183.tar.xz bugs-04c45c7227753483c999e5a751c7b8f12abc0183.zip |
Bug 192513: importxml.pl and move.pl now use the new mail routines introduced in bug 124174 (they got broken when processmail was removed). Also fixes several comments referring to processmail (which no longer exists) in other files, and removes references to processmail from the .htaccess files and the executable file list in checksetup.pl.
r= jaypee, a= justdave
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index cce3792ee..856767381 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -1398,7 +1398,7 @@ foreach my $id (@idlist) { @ccRemoved = @removed; } - # We need to run processmail for dependson/blocked bugs if the dependencies + # We need to send mail for dependson/blocked bugs if the dependencies # change or the status or resolution change. This var keeps track of that. my $check_dep_bugs = 0; @@ -1586,7 +1586,7 @@ foreach my $id (@idlist) { $newhash{$col} = $newvalues[$i]; $i++; } - # for passing to processmail to ensure that when someone is removed + # for passing to Bugzilla::BugMail to ensure that when someone is removed # from one of these fields, they get notified of that fact (if desired) # my $origOwner = ""; @@ -1612,8 +1612,8 @@ foreach my $id (@idlist) { $col = 'component'; } - # save off the old value for passing to processmail so the old - # owner can be notified + # save off the old value for passing to Bugzilla::BugMail so + # the old owner can be notified # if ($col eq 'assigned_to') { $old = ($old) ? DBID_to_name($old) : ""; |