X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Ftypo.php;h=bb2fc67c9f687ccfc21a1c5b55e3e08c8f507829;hb=816680ca85caf57174445cb578a1a57de97e6438;hp=7c275f3ca32e6629488e407e67bf5324454d05bc;hpb=214ec91a3f2c5fec6cced93f669b3a9725f0e40a;p=friendica.git diff --git a/util/typo.php b/util/typo.php index 7c275f3ca3..bb2fc67c9f 100644 --- a/util/typo.php +++ b/util/typo.php @@ -30,11 +30,10 @@ $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); } }