diff options
author | Vasudev Kamath <kamathvasudev@gmail.com> | 2012-06-11 20:47:11 +0530 |
---|---|---|
committer | Vasudev Kamath <kamathvasudev@gmail.com> | 2012-06-11 20:47:11 +0530 |
commit | 11974b4d948ae5d9b9fb53970838463bd88bb9f6 (patch) | |
tree | 426724e218a2fcaf3a1a2eedf6ffa591299755ee /util/typo.php | |
parent | 079fdecff1f4daa534045f4bd857e6ae6324474d (diff) | |
parent | afa88154114d5632cb13e7c3f56143cccdfd7daa (diff) | |
download | volse-hubzilla-11974b4d948ae5d9b9fb53970838463bd88bb9f6.tar.gz volse-hubzilla-11974b4d948ae5d9b9fb53970838463bd88bb9f6.tar.bz2 volse-hubzilla-11974b4d948ae5d9b9fb53970838463bd88bb9f6.zip |
Merge branch 'master' of git://github.com/friendica/friendica
Diffstat (limited to 'util/typo.php')
-rw-r--r-- | util/typo.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/util/typo.php b/util/typo.php index 7c275f3ca..bb2fc67c9 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); } } |