aboutsummaryrefslogtreecommitdiffstats
path: root/util/typo.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-01-17 17:41:19 -0800
committerzotlabs <mike@macgirvin.com>2017-01-17 17:41:19 -0800
commitb6595a44d1f6db38c104abaa3c24f42223316ec5 (patch)
tree93e3ad19a3b6cbae4d375b71ad8481892f6b1001 /util/typo.php
parent335d9af8dc4b02f8ec4017d30525a65e93c40eb2 (diff)
downloadvolse-hubzilla-b6595a44d1f6db38c104abaa3c24f42223316ec5.tar.gz
volse-hubzilla-b6595a44d1f6db38c104abaa3c24f42223316ec5.tar.bz2
volse-hubzilla-b6595a44d1f6db38c104abaa3c24f42223316ec5.zip
native wiki stuff
Diffstat (limited to 'util/typo.php')
-rw-r--r--util/typo.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/util/typo.php b/util/typo.php
index 3f6ffb166..f9c9e5353 100644
--- a/util/typo.php
+++ b/util/typo.php
@@ -38,8 +38,10 @@
echo "Directory: Zotlabs\n";
$files = glob('Zotlabs/*/*.php');
foreach($files as $file) {
- echo $file . "\n";
- include_once($file);
+ if(strpos($file,'SiteModule') === false) {
+ echo $file . "\n";
+ include_once($file);
+ }
}
echo "Directory: Zotlabs/Module (sub-modules)\n";