diff options
| author | David Aspinall | 1999-06-24 14:42:20 +0000 |
|---|---|---|
| committer | David Aspinall | 1999-06-24 14:42:20 +0000 |
| commit | 08ab36ffac1ca711b5630dfc7e1d8a6cc8486381 (patch) | |
| tree | 83d651a0f3a3ccfe2da554b7dde44092cb6174bd /html/functions.php3 | |
| parent | a2159d6d38ea62e27cb596f4860b15bbdae1ef6d (diff) | |
Support for version 3 browsers added.
Diffstat (limited to 'html/functions.php3')
| -rw-r--r-- | html/functions.php3 | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/html/functions.php3 b/html/functions.php3 index 4a019784..abba6128 100644 --- a/html/functions.php3 +++ b/html/functions.php3 @@ -32,14 +32,11 @@ function dt($string) { print "</div></dt>"; } -/* Automatic footnotes! */ - -/* FIXME: for now, do nothing. */ +/* Automatic footnotes? */ +/* FIXME: for now, just inline them. */ function footnote ($text) { - print "<div style=\"font-style:italic; font-size: smaller\"><p>[" - . $text . "]</p></div>"; - + print "<small><i><p>[" . $text . "]</p></small></i>"; } /* A hyper-link with optional mouse over text. @@ -107,11 +104,15 @@ function small_header($title) { print "<h1>" . $title . "</h1>\n</td>\n</table>\n"; } +/* FIXME: improve this function */ + function footer($filemodified=".") { include('footer.phtml'); date_modified($filemodified); print "</address>\n"; - print "</body>\n</html>\n"; + print "</body>\n"; + print "</font>\n"; /* Naughty stuff for older browsers, shouldn't do if V4 */ + print "</html>\n"; } function click_to_go_back() { |
