diff options
author | friendica <info@friendica.com> | 2015-01-18 19:28:32 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-18 19:28:32 -0800 |
commit | 2372d9b42a04ddc2e46eec101385b3fce48ade55 (patch) | |
tree | 2261fdcde6d8b543fc83b947a0262637a486667b /util | |
parent | 21da3443f30ba35225bef7e1a84fbf0ee8750b25 (diff) | |
download | volse-hubzilla-2372d9b42a04ddc2e46eec101385b3fce48ade55.tar.gz volse-hubzilla-2372d9b42a04ddc2e46eec101385b3fce48ade55.tar.bz2 volse-hubzilla-2372d9b42a04ddc2e46eec101385b3fce48ade55.zip |
make typo.php descend into include/RedDAV
Diffstat (limited to 'util')
-rw-r--r-- | util/typo.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/util/typo.php b/util/typo.php index 6c846696d..9edb7e78a 100644 --- a/util/typo.php +++ b/util/typo.php @@ -26,6 +26,14 @@ include_once($file); } + echo "Directory: include/RedDAV\n"; + $files = glob('include/RedDAV/*.php'); + foreach($files as $file) { + echo $file . "\n"; + include_once($file); + } + + echo "Directory: include/photo\n"; $files = glob('include/photo/*.php'); foreach($files as $file) { |