X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Ftypo.php;h=e20cce86a5a3c68cc74ef7b7399b1d8abecaaca5;hb=cdf2fe859f439a9d3689ea946e23d9aef1fb6cac;hp=84a50e15e236b0d68b6c08557d94884cb609b618;hpb=798c83b6aa3887622299ec4071c0d817953f3db9;p=friendica.git diff --git a/util/typo.php b/util/typo.php index 84a50e15e2..e20cce86a5 100644 --- a/util/typo.php +++ b/util/typo.php @@ -37,6 +37,11 @@ } } + if(x($a->config,'php_path')) + $phpath = $a->config['php_path']; + else + $phpath = 'php'; + echo "String files\n"; echo 'util/strings.php' . "\n"; @@ -47,5 +52,6 @@ foreach($files as $file) { echo $file . "\n"; - include_once($file); + passthru($phpath . ' util/typohelper.php ' . $file); +// include_once($file); }