X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=util%2Ftypo.php;h=bb2fc67c9f687ccfc21a1c5b55e3e08c8f507829;hb=181a17bd0575874da23497f913c5fc4bdb0f1e54;hp=84a50e15e236b0d68b6c08557d94884cb609b618;hpb=767b4f30f7ee114b1cfd66e68fa959ac033b5667;p=friendica.git diff --git a/util/typo.php b/util/typo.php index 84a50e15e2..bb2fc67c9f 100644 --- a/util/typo.php +++ b/util/typo.php @@ -30,13 +30,19 @@ $dirs = glob('addon/*'); foreach($dirs as $dir) { - $files = glob($dir . '/*.php'); + $addon = basename($dir); + $files = glob($dir . '/' . $addon . '.php'); foreach($files as $file) { echo $file . "\n"; 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"; @@ -47,5 +53,6 @@ foreach($files as $file) { echo $file . "\n"; - include_once($file); + passthru($phpath . ' util/typohelper.php ' . $file); +// include_once($file); }