From 4635782949a02a3b9c44568ff81f2cfb18086747 Mon Sep 17 00:00:00 2001 From: "Paula V. Quispe" Date: Wed, 6 May 2015 16:03:49 -0400 Subject: [PATCH] =?UTF-8?q?=C3=8F=20solved=20some=20issues=20in=20installe?= =?UTF-8?q?r?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- workflow/engine/controllers/installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/engine/controllers/installer.php b/workflow/engine/controllers/installer.php index 2eeaffef1..706c405c5 100644 --- a/workflow/engine/controllers/installer.php +++ b/workflow/engine/controllers/installer.php @@ -321,8 +321,8 @@ class Installer extends Controller G::verifyPath( $aux['dirname'], true ); if (is_dir( $aux['dirname'] )) { if (! file_exists( $_REQUEST['pathLogFile'] )) { - @file_put_contents( $pathLogFile, '' ); - @chmod($pathShared, 0770); + @file_put_contents( $_REQUEST['pathLogFile'], '' ); + @chmod($_REQUEST['pathShared'], 0770); } } }