tbrehm
2009-10-27 3764dc4ad0b85b25cfe1247f68c5df00a2f0445d
install/lib/install.lib.php
@@ -149,7 +149,7 @@
      } elseif(stristr($content,'CentOS release 5.3 (Final)')) {
         $distname = 'CentOS';
         $distver = '5.3';
         $distid = 'centos52';
         $distid = 'centos53';
         $distbaseid = 'fedora';
         swriteln("Operating System: CentOS 5.3 or compatible\n");
      } else {
@@ -606,7 +606,7 @@
}
function is_installed($appname) {
   exec('which '.escapeshellcmd($appname).' > /dev/null 2> /dev/null',$out);
   exec('which '.escapeshellcmd($appname).' 2> /dev/null',$out);
   if(isset($out[0]) && stristr($out[0],$appname)) {
      return true;
   } else {