From: terry%mozilla.org <> Date: Thu, 27 Jan 2000 05:56:24 +0000 (+0000) Subject: Patch by Rob Baham -- links to other bugs X-Git-Tag: bugzilla-2.12~414 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bad296d9f02c889a99d8458b1e3be9c5084cd96a;p=thirdparty%2Fbugzilla.git Patch by Rob Baham -- links to other bugs should be relative URLs, not absolute. --- diff --git a/bug_form.pl b/bug_form.pl index 8af49c635b..0bee1ba61c 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -91,13 +91,13 @@ sub quoteUrls { my $num = $2; $item = value_quote($item); # Not really necessary, since we know # there's no special chars in it. - $item = qq{$item}; + $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@; + $item =~ s@\d+@$num@; $things[$count++] = $item; } while ($text =~ s/Created an attachment \(id=(\d+)\)/"##$count##"/e) {