From 3d229b05ddfb1b75b10a7e8f66d3b1b847d4afd2 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Sun, 25 Oct 2009 08:44:48 -0400 Subject: [PATCH] Added: FS#613 - Add email domain aliases --- install/lib/install.lib.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install/lib/install.lib.php b/install/lib/install.lib.php index e51d643..d27ff11 100644 --- a/install/lib/install.lib.php +++ b/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 { -- Gitblit v1.9.1