X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Ftypo.php;h=e20cce86a5a3c68cc74ef7b7399b1d8abecaaca5;hb=685686b3e81e53264b4946f54904e8f5323da2ea;hp=84a50e15e236b0d68b6c08557d94884cb609b618;hpb=767b4f30f7ee114b1cfd66e68fa959ac033b5667;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); }