X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Ftypo.php;h=a8055c84184317ba3d51f564938f959b38b93211;hb=52474847cbb93bd79a94a32fc4830c562c3452bd;hp=7c275f3ca32e6629488e407e67bf5324454d05bc;hpb=1872cf2b2d14be5c4b8fbc9e2cf61f9fcd9e2f88;p=friendica.git diff --git a/util/typo.php b/util/typo.php index 7c275f3ca3..a8055c8418 100644 --- a/util/typo.php +++ b/util/typo.php @@ -25,16 +25,22 @@ 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/*'); foreach($dirs as $dir) { - $files = glob($dir . '/*.php'); + $addon = basename($dir); + $files = glob($dir . '/' . $addon . '.php'); foreach($files as $file) { echo $file . "\n"; - if(stristr($file,'jappixmini/proxy.php')) - continue; include_once($file); } }