diff options
author | dave%intrec.com <> | 2000-09-07 15:31:12 +0200 |
---|---|---|
committer | dave%intrec.com <> | 2000-09-07 15:31:12 +0200 |
commit | ef9c84bc9f388a6f15b39465f0a5c769496db311 (patch) | |
tree | 63308580b923cb59fc2aae2127b9ca33af54d345 /editgroups.cgi | |
parent | 72e109eb2a3b81c5e5b79f15b5c3fc74475bdd9e (diff) | |
download | bugzilla-ef9c84bc9f388a6f15b39465f0a5c769496db311.tar.gz bugzilla-ef9c84bc9f388a6f15b39465f0a5c769496db311.tar.xz |
Fix for bug 51519: Links to index are too specific. Patch by
john.beranek@pace.co.uk (John Beranek)
Diffstat (limited to 'editgroups.cgi')
-rwxr-xr-x | editgroups.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editgroups.cgi b/editgroups.cgi index 27474b692..16827ba99 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -69,7 +69,7 @@ sub ShowError ($) 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 $num = 0; |