From 3764dc4ad0b85b25cfe1247f68c5df00a2f0445d Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Tue, 27 Oct 2009 11:34:34 -0400 Subject: [PATCH] Implemented: FS#539 - ssl domain must be selectable --- install/lib/install.lib.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/install/lib/install.lib.php b/install/lib/install.lib.php index 93e1cc6..d27ff11 100644 --- a/install/lib/install.lib.php +++ b/install/lib/install.lib.php @@ -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