diff options
author | friendica <info@friendica.com> | 2013-04-22 20:02:21 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-04-22 20:02:21 -0700 |
commit | 552f03122c9ec066f5728fc4629d155937fd3620 (patch) | |
tree | 1e8a585b52fa28d1c47abd70d89bb1225fe99eb7 /util/typo.php | |
parent | 7621bd3bb171c7a4772e4663ee43b86a55a1f7c0 (diff) | |
download | volse-hubzilla-552f03122c9ec066f5728fc4629d155937fd3620.tar.gz volse-hubzilla-552f03122c9ec066f5728fc4629d155937fd3620.tar.bz2 volse-hubzilla-552f03122c9ec066f5728fc4629d155937fd3620.zip |
db abstraction layer
Diffstat (limited to 'util/typo.php')
-rw-r--r-- | util/typo.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/util/typo.php b/util/typo.php index fac60e8ec..427b97efa 100644 --- a/util/typo.php +++ b/util/typo.php @@ -19,6 +19,13 @@ include_once($file); } + echo "Directory: include/dba\n"; + $files = glob('include/dba/*.php'); + foreach($files as $file) { + echo $file . "\n"; + include_once($file); + } + echo "Directory: mod\n"; $files = glob('mod/*.php'); foreach($files as $file) { |