Skip to content

Commit 6137440

Browse files
committed
Fixed a bug in quotaingof a variable in installer.
1 parent 04c7ebe commit 6137440

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/lib/installer_base.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ public function install_ispconfig()
657657
$install_dir = $this->conf['ispconfig_install_dir'];
658658

659659
//* Create the ISPConfig installation directory
660-
if(!@is_dir($install_dir)) {
660+
if(!@is_dir("$install_dir")) {
661661
$command = "mkdir $install_dir";
662662
caselog($command.' &> /dev/null', __FILE__, __LINE__, "EXECUTED: $command", "Failed to execute the command $command");
663663
}

0 commit comments

Comments
 (0)