aboutsummaryrefslogtreecommitdiffhomepage
path: root/html/htmlshow.php
blob: 915aac6f1ded47212dd42c27b24448b7719dad7e (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
  require('functions.php3');
  if (substr($file,0,1)=="." or 
      substr($file,0,1)=="/" or
      substr($file,0,1)=="~") {
     print "Sorry, can't show you that file!\n"; 
  } else {
     hack_html($file,$title);
  }
  footer(); 
?>