]> git.mxchange.org Git - friendica.git/blob - util/typo.php
i18n strings update
[friendica.git] / util / typo.php
1 <?php
2         // Tired of chasing typos and finding them after a commit. 
3         // Run this from cmdline in basedir and quickly see if we've 
4         // got any parse errors in our application files.
5
6         include 'boot.php';
7
8         $a = new App();
9
10         $files = glob('mod/*.php');
11         foreach($files as $file)
12                 include_once($file);
13
14
15         $files = glob('include/*.php');
16         foreach($files as $file)
17                 include_once($file);