--- include_php/tree.php 2001/12/15 20:34:43 1.1 +++ include_php/tree.php 2001/12/16 10:33:10 1.2 @@ -34,14 +34,16 @@ while ($file = readdir($this->h)) { if (substr($file,0,1) != ".") { if (is_dir("$path/$file")) { - $this->out.="
  • $file"; + $link="".$file." ".ReadNote("$path/$file").""; + $this->out.="
  • $link"; $new_t=new tree(); $new_t->recurse("$path/$file"); $this->out.=$new_t->out; } else { //$this->out.="
  • $file\n"; $dir=substr($path,strlen($GLOBALS[gblFsRoot]),strlen($path)-strlen($GLOBALS[gblFsRoot])); - $this->out.="
  • $file\n"; + $link=$file." ".ReadNote("$path/$file").""; + $this->out.="
  • $link\n"; } } }