From 4357710bfe8f9d623c2d556f86ccd1e70501d87a Mon Sep 17 00:00:00 2001 From: Diego Najar Date: Thu, 23 Sep 2021 18:56:57 +0200 Subject: [PATCH] remove directory creation --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index c8af89f8..96726059 100644 --- a/install.php +++ b/install.php @@ -307,7 +307,7 @@ function install($adminPassword, $timezone) } // System directories - $systemDirectories = array(PATH_UPLOADS_PROFILES, PATH_TMP, PATH_WORKSPACES, PATH_UPLOADS_PAGES); + $systemDirectories = array(PATH_UPLOADS_PROFILES, PATH_TMP, PATH_WORKSPACES); foreach ($systemDirectories as $directory) { if (!mkdir($directory, DIR_PERMISSIONS, true)) { $errorText = 'Error when trying to created the directory=>' . $directory;