From 6137440f385ee164c342681bd722c5d53e81819e Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Tue, 15 Jul 2008 15:31:17 -0400 Subject: [PATCH] Fixed a bug in quotaingof a variable in installer. --- install/lib/installer_base.lib.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index 59340a8..52c517f 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -657,7 +657,7 @@ $install_dir = $this->conf['ispconfig_install_dir']; //* Create the ISPConfig installation directory - if(!@is_dir($install_dir)) { + if(!@is_dir("$install_dir")) { $command = "mkdir $install_dir"; caselog($command.' &> /dev/null', __FILE__, __LINE__, "EXECUTED: $command", "Failed to execute the command $command"); } -- Gitblit v1.9.1