aboutsummaryrefslogtreecommitdiff
path: root/html/functions.php3
diff options
context:
space:
mode:
authorDavid Aspinall2002-07-13 17:53:27 +0000
committerDavid Aspinall2002-07-13 17:53:27 +0000
commit0e124e23be2f7be4b5c47572cecf7da8064b56b9 (patch)
tree1215064c8faecc63340f4671a0c095130a177e6e /html/functions.php3
parentfdb8d72700feceb587cebe0696531b2447467f5c (diff)
Fix link in mozilla in click_to_go_back.
Diffstat (limited to 'html/functions.php3')
-rw-r--r--html/functions.php36
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";
}