X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Ftypo.php;h=7c275f3ca32e6629488e407e67bf5324454d05bc;hb=5bc0cfa06724204f8de26508859b1b76636f77bd;hp=ac61ef6d35396ce2b192d74675e25d4388acdb74;hpb=a2ee5ebe427522228dc03dc81da11f348a399c4d;p=friendica.git diff --git a/util/typo.php b/util/typo.php index ac61ef6d35..7c275f3ca3 100644 --- a/util/typo.php +++ b/util/typo.php @@ -33,16 +33,27 @@ $files = glob($dir . '/*.php'); foreach($files as $file) { echo $file . "\n"; + if(stristr($file,'jappixmini/proxy.php')) + continue; include_once($file); } } + if(x($a->config,'php_path')) + $phpath = $a->config['php_path']; + else + $phpath = 'php'; + echo "String files\n"; echo 'util/strings.php' . "\n"; include_once('util/strings.php'); + echo count($a->strings) . ' strings' . "\n"; + $files = glob('view/*/strings.php'); + foreach($files as $file) { echo $file . "\n"; - include_once($file); + passthru($phpath . ' util/typohelper.php ' . $file); +// include_once($file); }