2002-10-29 14:48:58 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
|
|
|
|
require("../config.php");
|
|
|
|
|
2003-06-12 11:55:03 +00:00
|
|
|
if (! $info = document_file("files.php", false)) {
|
|
|
|
error("404 - File Not Found");
|
|
|
|
}
|
2002-12-29 14:39:52 +00:00
|
|
|
|
|
|
|
include($info->filepath);
|
|
|
|
|
2002-10-29 14:48:58 +00:00
|
|
|
print_header();
|
2002-12-29 14:39:52 +00:00
|
|
|
|
2003-06-12 11:55:03 +00:00
|
|
|
echo "<font size=2 face=\"san-serif\">";
|
2002-12-29 14:39:52 +00:00
|
|
|
foreach ($string as $file => $filename) {
|
2003-06-12 11:55:03 +00:00
|
|
|
echo "<li><a target=\"main\" href=\"$CFG->wwwroot/doc/?file=$file\">$filename</a></li>";
|
2002-12-29 14:39:52 +00:00
|
|
|
}
|
2003-06-12 11:55:03 +00:00
|
|
|
echo "</font>";
|
2002-10-29 14:48:58 +00:00
|
|
|
|
|
|
|
?>
|