diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/typo.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/util/typo.php b/util/typo.php index 427b97efa..6c846696d 100644 --- a/util/typo.php +++ b/util/typo.php @@ -26,6 +26,13 @@ include_once($file); } + echo "Directory: include/photo\n"; + $files = glob('include/photo/*.php'); + foreach($files as $file) { + echo $file . "\n"; + include_once($file); + } + echo "Directory: mod\n"; $files = glob('mod/*.php'); foreach($files as $file) { |