Update util/typo.php to check in to 'object' folder

This commit is contained in:
Fabrixxm 2012-09-20 09:32:42 +02:00
parent 40f2ec189e
commit eda96a82d7
1 changed files with 7 additions and 0 deletions

View File

@ -26,6 +26,13 @@
include_once($file);
}
echo "Directory: object\n";
$files = glob('object/*.php');
foreach($files as $file) {
echo $file . "\n";
include_once($file);
}
echo "Directory: addon\n";
$dirs = glob('addon/*');