summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
Diffstat (limited to 'bug_form.pl')
-rw-r--r--bug_form.pl4
1 files changed, 2 insertions, 2 deletions
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{<A HREF="${base}show_bug.cgi?id=$num">$item</A>};
+ $item = qq{<A HREF="show_bug.cgi?id=$num">$item</A>};
$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+@<A HREF="${base}show_bug.cgi?id=$num">$num</A>@;
+ $item =~ s@\d+@<A HREF="show_bug.cgi?id=$num">$num</A>@;
$things[$count++] = $item;
}
while ($text =~ s/Created an attachment \(id=(\d+)\)/"##$count##"/e) {