From bad296d9f02c889a99d8458b1e3be9c5084cd96a Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Thu, 27 Jan 2000 05:56:24 +0000 Subject: Patch by Rob Baham -- links to other bugs should be relative URLs, not absolute. --- bug_form.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bug_form.pl') diff --git a/bug_form.pl b/bug_form.pl index 8af49c635..0bee1ba61 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) { -- cgit v1.2.3-24-g4f1b