From eda96a82d77725e4cb577968540899016600327d Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Thu, 20 Sep 2012 09:32:42 +0200 Subject: [PATCH] Update util/typo.php to check in to 'object' folder --- util/typo.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/util/typo.php b/util/typo.php index bb2fc67c..a8055c84 100644 --- a/util/typo.php +++ b/util/typo.php @@ -25,6 +25,13 @@ echo $file . "\n"; 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/*');