Commit ef9c84bc authored by dave%intrec.com's avatar dave%intrec.com

Fix for bug 51519: Links to index are too specific. Patch by

john.beranek@pace.co.uk (John Beranek)
parent 72e109eb
...@@ -69,7 +69,7 @@ sub ShowError ($) ...@@ -69,7 +69,7 @@ sub ShowError ($)
sub PutTrailer (@) sub PutTrailer (@)
{ {
my (@links) = ("<a href=index.html>Back to the Main Bugs Page</a>", @_); my (@links) = ("<a href=\"./\">Back to the Main Bugs Page</a>", @_);
my $count = $#links; my $count = $#links;
my $num = 0; my $num = 0;
......
...@@ -198,7 +198,7 @@ sub EmitFormElements ($$$$$$$) ...@@ -198,7 +198,7 @@ sub EmitFormElements ($$$$$$$)
sub PutTrailer (@) sub PutTrailer (@)
{ {
my (@links) = ("Back to the <A HREF=\"index.html\">index</A>", @_); my (@links) = ("Back to the <A HREF=\"./\">index</A>", @_);
my $count = $#links; my $count = $#links;
my $num = 0; my $num = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment