]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
fix for 51520: Missing uses of Param('emailsuffix')
authorcyeh%bluemartini.com <>
Thu, 14 Sep 2000 00:45:48 +0000 (00:45 +0000)
committercyeh%bluemartini.com <>
Thu, 14 Sep 2000 00:45:48 +0000 (00:45 +0000)
patch submitted by john.beranek@pace.co.uk (John Beranek)

globals.pl
processmail

index 94e16734d0ca560912eae4638a9ca998477c1734..d8d1bc142988a306e10780809458bd7b3151c39e 100644 (file)
@@ -731,7 +731,7 @@ sub GetLongDescriptionAsText {
     while (MoreSQLData()) {
         my ($who, $when, $text) = (FetchSQLData());
         if ($count) {
-            $result .= "\n\n------- Additional Comments From $who  " .
+            $result .= "\n\n------- Additional Comments From $who".Param('emailsuffix')."  ".
                 time2str("%Y-%m-%d %H:%M", str2time($when)) . " -------\n";
         }
         $result .= $text;
@@ -772,6 +772,7 @@ sub GetLongDescriptionAsHTML {
     SendSQL($query);
     while (MoreSQLData()) {
         my ($who, $email, $when, $text) = (FetchSQLData());
+        $email .= Param('emailsuffix');
         if ($count) {
             $result .= "<BR><BR><I>------- Additional Comments From ";
               if ($who) {
index d96a6f96ef1f9361fb9f2422f1652fc5fed7cef2..c919b7acccb5b5b9be120bd6520dd9492c780f24 100755 (executable)
@@ -402,7 +402,7 @@ sub NewProcessOneBug {
         my ($who, $what, $when, $old, $new) = (@$ref);
         if ($who ne $lastwho) {
             $lastwho = $who;
-            $difftext .= "\n$who changed:\n\n";
+            $difftext .= "\n$who" . Param('emailsuffix') . " changed:\n\n";
             $difftext .= FormatTriple("What    ", "Old Value", "New Value");
             $difftext .= ('-' x 76) . "\n";
         }
@@ -570,6 +570,8 @@ sub NewProcessOnePerson ($$\@\%\%\%$$$$) {
     my $isnew = ($start !~ m/[1-9]/);
     
     my %substs;
+
+    $person .= Param('emailsuffix');
     $substs{"neworchanged"} = $isnew ? "New" : "Changed";
     $substs{"to"} = $person;
     $substs{"cc"} = '';