X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Ftypo.php;h=e20cce86a5a3c68cc74ef7b7399b1d8abecaaca5;hb=e00068334f414b42cd7a25c594a47efb86d5bb2f;hp=ac61ef6d35396ce2b192d74675e25d4388acdb74;hpb=0de88eb6b0e5ceab470240a54414317884a49101;p=friendica.git diff --git a/util/typo.php b/util/typo.php index ac61ef6d35..e20cce86a5 100644 --- a/util/typo.php +++ b/util/typo.php @@ -37,12 +37,21 @@ } } + 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); }