From: lpsolit%gmail.com <> Date: Tue, 26 Jul 2005 21:36:13 +0000 (+0000) Subject: Bug 298273: Marking duplicates misses 'Bug' before the number - Patch by Marc Schuman... X-Git-Tag: bugzilla-2.21.1~167 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9f1149d089594e3135a6b169ff6eef4ef4be52d;p=thirdparty%2Fbugzilla.git Bug 298273: Marking duplicates misses 'Bug' before the number - Patch by Marc Schumann r=LpSolit a=justdave --- diff --git a/globals.pl b/globals.pl index 780e85e0bc..f8f0703661 100644 --- a/globals.pl +++ b/globals.pl @@ -825,7 +825,7 @@ sub quoteUrls { "$1") ~egox; - # Duplicate markers + # Old duplicate markers $text =~ s~(?<=^\*\*\*\ This\ bug\ has\ been\ marked\ as\ a\ duplicate\ of\ ) (\d+) (?=\ \*\*\*\Z) diff --git a/process_bug.cgi b/process_bug.cgi index c8e1e81149..50fde12eb5 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -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; };