From: terry%netscape.com <>
Date: Wed, 28 Apr 1999 04:48:36 +0000 (+0000)
Subject: Added links to "a duplicate of" bug ids.
X-Git-Tag: bugzilla-2.4~5
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b20d2a928ab9c6e49d9a6f504ec77d1b73121d36;p=thirdparty%2Fbugzilla.git
Added links to "a duplicate of" bug ids.
---
diff --git a/bug_form.pl b/bug_form.pl
index 314a03b9e4..1d7cae19de 100644
--- a/bug_form.pl
+++ b/bug_form.pl
@@ -33,6 +33,8 @@ sub quoteUrls {
my $text = shift; # Take a copy; don't modify in-place.
return $text unless $text;
+ my $base = Param('urlbase');
+
my $protocol = join '|',
qw(afs cid ftp gopher http https mid news nntp prospero telnet wais);
@@ -71,10 +73,15 @@ sub quoteUrls {
my $num = $2;
$item = value_quote($item); # Not really necessary, since we know
# there's no special chars in it.
- my $base = Param('urlbase');
$item = qq{$item};
$things[$count++] = $item;
}
+ while ($text =~ s/\*\*\* This bug has been marked as a duplicate of (\d+) \*\*\*/"##$count##"/ei) {
+ my $item = $&;
+ my $num = $1;
+ $item =~ s@\d+@$num@;
+ $things[$count++] = $item;
+ }
while ($text =~ s/Created an attachment \(id=(\d+)\)/"##$count##"/e) {
my $item = $&;
my $num = $1;