aboutsummaryrefslogtreecommitdiff
path: root/html/fileshow.phtml
diff options
context:
space:
mode:
authorDavid Aspinall1999-06-24 14:04:28 +0000
committerDavid Aspinall1999-06-24 14:04:28 +0000
commit2ed53db7506dd4811fbe6c3fac64c3703d1169a8 (patch)
treedbaeab7ca5223cf02a16b2ff9834b8aac203ad84 /html/fileshow.phtml
parent7e049e7ecc1ec8098463454f87369461bd10efc2 (diff)
New web pages
Diffstat (limited to 'html/fileshow.phtml')
-rw-r--r--html/fileshow.phtml13
1 files changed, 13 insertions, 0 deletions
diff --git a/html/fileshow.phtml b/html/fileshow.phtml
new file mode 100644
index 00000000..4ab2170e
--- /dev/null
+++ b/html/fileshow.phtml
@@ -0,0 +1,13 @@
+<?php
+ require('functions.php3');
+ $filename=$HTTP_GET_VARS["file"];
+ $title=$HTTP_GET_VARS["title"];
+ if ($title=="") { $title = $filename; };
+ small_header($title);
+ print "<p><pre>\n";
+ markup_plain_text($filename);
+ print "</pre></p>\n";
+ print "<hr>";
+ click_to_go_back();
+ footer();
+?>