diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-03-29 14:12:50 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-03-29 14:12:50 +0200 |
commit | e2b975065c2f55a4e3c3798b4c36df44e112fdd0 (patch) | |
tree | 6cf84e4b5ce1773918cfa0e9de5bc6aa7eb516b3 /util/typo.php | |
parent | 2a23147042f568c2b6957b81355c0123033f1854 (diff) | |
parent | 920396e4024e56c3e00f1f159268c2aba16e4609 (diff) | |
download | volse-hubzilla-e2b975065c2f55a4e3c3798b4c36df44e112fdd0.tar.gz volse-hubzilla-e2b975065c2f55a4e3c3798b4c36df44e112fdd0.tar.bz2 volse-hubzilla-e2b975065c2f55a4e3c3798b4c36df44e112fdd0.zip |
Merge remote-tracking branch 'friendika-master/master'
Diffstat (limited to 'util/typo.php')
-rw-r--r-- | util/typo.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/util/typo.php b/util/typo.php index 84a50e15e..e20cce86a 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); } |