Reworked 'nodir'-function a bit and included it in the Page-class instead. Started working on a way to edit content files

This commit is contained in:
2014-07-04 18:27:49 +02:00
parent f723d7bd69
commit b9cbc947b5
8 changed files with 81 additions and 3 deletions

10
user/editfiles.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
require ("../includes/content.php");
require ("../includes/miscfunc.php");
$files = Page::fileList();
foreach($files as $file)
{
print "<a href=\"editfile.php?file=$file\">$file</a><br/>\n";
}
?>