diff options
Diffstat (limited to 'html/fileshow.phtml')
| -rw-r--r-- | html/fileshow.phtml | 13 |
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(); +?> |
