aboutsummaryrefslogtreecommitdiffhomepage
path: root/html/fileshow.phtml
blob: 4ab2170eb00310099af30c591453e00f12efb080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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();
?>