diff options
| author | David Aspinall | 2002-07-13 17:53:27 +0000 |
|---|---|---|
| committer | David Aspinall | 2002-07-13 17:53:27 +0000 |
| commit | 0e124e23be2f7be4b5c47572cecf7da8064b56b9 (patch) | |
| tree | 1215064c8faecc63340f4671a0c095130a177e6e /html | |
| parent | fdb8d72700feceb587cebe0696531b2447467f5c (diff) | |
Fix link in mozilla in click_to_go_back.
Diffstat (limited to 'html')
| -rw-r--r-- | html/functions.php3 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/html/functions.php3 b/html/functions.php3 index 208abc17..aaa4fc56 100644 --- a/html/functions.php3 +++ b/html/functions.php3 @@ -155,8 +155,10 @@ function footer($filemodified=".") { } function click_to_go_back() { - print "<p>\nClick <a href=\"\">here</a> to go back to the "; - print $project_title; // FIXME: doesn't work. + // FIXME: the empty href no longer refers to the root, + // so this use of "/" breaks relative linking. + print "<p>\nClick <a href=\"/\">here</a> to go back to the "; + print $project_title; // FIXME: doesn't work, prints nothing. print " front page.</p>\n"; } |
