From: Fabrixxm Date: Thu, 20 Sep 2012 07:32:42 +0000 (+0200) Subject: Update util/typo.php to check in to 'object' folder X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=eda96a82d77725e4cb577968540899016600327d;p=friendica.git Update util/typo.php to check in to 'object' folder --- diff --git a/util/typo.php b/util/typo.php index bb2fc67c9f..a8055c8418 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/*');