BUG 8462 : "Directories are created with overly permissive settings"

Solution : set shared directory permissions mode to 770
This commit is contained in:
ralpheav
2013-04-30 17:17:02 -04:00
parent b8b68fd5e9
commit d8d8878983

1
workflow/engine/controllers/installer.php Normal file → Executable file
View File

@@ -289,6 +289,7 @@ class Installer extends Controller
if (is_dir( $aux['dirname'] )) {
if (! file_exists( $_REQUEST['pathLogFile'] )) {
@file_put_contents( $_REQUEST['pathLogFile'], '' );
chmod($_REQUEST['pathShared'], 0770);
}
}
}