X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=util%2Ftypo.php;h=e20cce86a5a3c68cc74ef7b7399b1d8abecaaca5;hb=1e02fd8a72784d8f637bd7fa6f0b188cae182a3a;hp=84a50e15e236b0d68b6c08557d94884cb609b618;hpb=067626380db6d5ed71d68bd91481ff51cfa76915;p=friendica.git diff --git a/util/typo.php b/util/typo.php old mode 100644 new mode 100755 index 84a50e15e2..e20cce86a5 --- 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); }