]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
fix for 29820: Remove "Changed" from email subject line
authorcyeh%bluemartini.com <>
Thu, 14 Sep 2000 04:25:25 +0000 (04:25 +0000)
committercyeh%bluemartini.com <>
Thu, 14 Sep 2000 04:25:25 +0000 (04:25 +0000)
patch submitted by zach@math.berkeley.edu, additional commentary by
cyeh@bluemartini.com.

processmail

index c919b7acccb5b5b9be120bd6520dd9492c780f24..2e45e30aeab9ac991bdb5881ec39188bbe846cba 100755 (executable)
@@ -572,7 +572,12 @@ sub NewProcessOnePerson ($$\@\%\%\%$$$$) {
     my %substs;
 
     $person .= Param('emailsuffix');
-    $substs{"neworchanged"} = $isnew ? "New" : "Changed";
+# 09/13/2000 cyeh@bluemartini.com
+# If a bug is changed, don't put the word "Changed" in the subject mail
+# since if the bug didn't change, you wouldn't be getting mail
+# in the first place! see http://bugzilla.mozilla.org/show_bug.cgi?id=29820 
+# for details.
+    $substs{"neworchanged"} = $isnew ? "New" : "";
     $substs{"to"} = $person;
     $substs{"cc"} = '';
     $substs{"bugid"} = $id;