]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 298273: Marking duplicates misses 'Bug' before the number - Patch by Marc Schuman...
authorlpsolit%gmail.com <>
Tue, 26 Jul 2005 21:36:13 +0000 (21:36 +0000)
committerlpsolit%gmail.com <>
Tue, 26 Jul 2005 21:36:13 +0000 (21:36 +0000)
globals.pl
process_bug.cgi

index 780e85e0bcd9dea75a891d2c39765352a9dca416..f8f070366117816b5e230b92c66b6f992d24ee85 100644 (file)
@@ -825,7 +825,7 @@ sub quoteUrls {
                               "<a href=\"#c$4\">$1</a>")
               ~egox;
 
-    # Duplicate markers
+    # Old duplicate markers
     $text =~ s~(?<=^\*\*\*\ This\ bug\ has\ been\ marked\ as\ a\ duplicate\ of\ )
                (\d+)
                (?=\ \*\*\*\Z)
index c8e1e81149e53db1c73fdb72140d71ffdee1a8c6..50fde12eb58c02e00c4a1c787bbdc8a185f049ce 100755 (executable)
@@ -1044,7 +1044,7 @@ SWITCH: for ($cgi->param('knob')) {
         ChangeResolution('DUPLICATE');
         my $comment = $cgi->param('comment');
         $comment .= "\n\n*** This bug has been marked " .
-                    "as a duplicate of $duplicate ***";
+                    "as a duplicate of bug $duplicate ***";
         $cgi->param('comment', $comment);
         last SWITCH;
     };