add email probe logging, limit typo check to main addon files and skip additional support files

This commit is contained in:
friendica
2012-06-05 19:28:04 -07:00
parent ae08d2c49b
commit 5389efffa9
2 changed files with 5 additions and 3 deletions

View File

@@ -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);
}
}