tbrehm
2008-12-07 aee6fd8a4abfef70736c5b7b80fe1236efc7d6a7
Fixed PHP warnings in install.lib.php
1 files modified
2 ■■■ changed files
install/lib/install.lib.php 2 ●●● patch | view | raw | blame | history
install/lib/install.lib.php
@@ -556,7 +556,7 @@
function is_installed($appname) {
    exec('which '.escapeshellcmd($appname),$out);
    if(stristr($out[0],$appname)) {
    if(isset($out[0]) && stristr($out[0],$appname)) {
        return true;
    } else {
        return false;