From 3076b4757be7f5b4dd3e1927cbe744cb7c48b79c Mon Sep 17 00:00:00 2001 From: crestAT Date: Fri, 29 Jan 2016 06:04:21 +0100 Subject: [PATCH] beta create log-dir in ...-install --- onebuttoninstaller/onebuttoninstaller-install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onebuttoninstaller/onebuttoninstaller-install.php b/onebuttoninstaller/onebuttoninstaller-install.php index 895b772..edd7b04 100644 --- a/onebuttoninstaller/onebuttoninstaller-install.php +++ b/onebuttoninstaller/onebuttoninstaller-install.php @@ -53,7 +53,7 @@ global $input_errors; global $savemsg; $install_dir = dirname(__FILE__)."/"; // get directory where the installer script resides -if (!is_dir("{$install_dir}/log")) { mkdir("{$install_dir}/log", 0775, true); } +if (!is_dir("{$install_dir}log")) { mkdir("{$install_dir}log", 0775, true); } // check FreeBSD release for fetch options >= 9.3 $release = explode("-", exec("uname -r"));