]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 113383: Add a link to the dependent bug in emails about a dependent bug...
authormyk%mozilla.org <>
Fri, 11 Jan 2002 05:47:04 +0000 (05:47 +0000)
committermyk%mozilla.org <>
Fri, 11 Jan 2002 05:47:04 +0000 (05:47 +0000)
Patch by Myk Melez <myk@mozilla.org>.
r=caillon,jake

processmail

index 75a7b4bf9ca25dd530e0c02faebabd5ef75c9dc4..80ab85eaf2e572a97a4d414d4a55e46d7a5717bd 100755 (executable)
@@ -194,10 +194,11 @@ sub ProcessOneBug {
                 $deptext .= $thisdiff;
             }
             $lastbug = $bug;
+            my $urlbase = Param("urlbase");
             $thisdiff =
-                "\nThis bug depends on bug $bug, which changed state.\n";
-            $thisdiff .=
-                "Bug $bug Summary: $summary\n\n";
+              "\nBug $id depends on bug $bug, which changed state.\n\n" . 
+              "Bug $bug Summary: $summary\n" . 
+              "${urlbase}show_bug.cgi?id=$bug\n\n"; 
             $thisdiff .= FormatTriple("What    ", "Old Value", "New Value");
             $thisdiff .= ('-' x 76) . "\n";
             $interestingchange = 0;