diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-28 16:10:44 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-28 16:10:44 -0700 |
commit | dd3f754e235e286207ee638e75c601ca1e809936 (patch) | |
tree | 9c5cc217bbd7674dd2ae58aed6bfc2329a729dac /test | |
parent | 27946c102d9542bd0a36ccb0f3d167e0f18645c6 (diff) | |
download | volse-hubzilla-dd3f754e235e286207ee638e75c601ca1e809936.tar.gz volse-hubzilla-dd3f754e235e286207ee638e75c601ca1e809936.tar.bz2 volse-hubzilla-dd3f754e235e286207ee638e75c601ca1e809936.zip |
found yet another typo, so created a typo finder
Diffstat (limited to 'test')
-rw-r--r-- | test/typo.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/typo.php b/test/typo.php new file mode 100644 index 000000000..c8b94be21 --- /dev/null +++ b/test/typo.php @@ -0,0 +1,13 @@ +<?php + include 'boot.php'; + + $a = new App(); + + $files = glob('mod/*.php'); + foreach($files as $file) + include_once($file); + + + $files = glob('include/*.php'); + foreach($files as $file) + include_once($file); |