tbrehm
2008-12-12 ec09b18c9c44f85ceb6d9e7588a03a221cd1193f
install/lib/install.lib.php
@@ -31,7 +31,6 @@
/*
   This function returns a string that describes the installed
   linux distribution. e.g. debian40 for Debian Linux 4.0
*/
@@ -555,6 +554,15 @@
   }
}
function is_installed($appname) {
   exec('which '.escapeshellcmd($appname),$out);
   if(isset($out[0]) && stristr($out[0],$appname)) {
      return true;
   } else {
      return false;
   }
}
?>