Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2021-03-13 05:09:59 +0300
committerGitHub <noreply@github.com>2021-03-13 05:09:59 +0300
commita5c70b35ae954c22974ccf0fb4be22eb40e57380 (patch)
treea1d8e2e578062eb102dd8b35b3c779b08a2622b4
parent60a3ad191ec03ebcfaa082f5ef455fa037e78a4f (diff)
Do not try to remove webserver config files (#17340)
they are overwritten if possible nevertheless
-rw-r--r--plugins/Installation/ServerFilesGenerator.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/Installation/ServerFilesGenerator.php b/plugins/Installation/ServerFilesGenerator.php
index dd926b2646..84ab0bbd05 100644
--- a/plugins/Installation/ServerFilesGenerator.php
+++ b/plugins/Installation/ServerFilesGenerator.php
@@ -16,12 +16,8 @@ class ServerFilesGenerator
{
public static function createFilesForSecurity()
{
- self::deleteHtAccessFiles();
self::createHtAccessFiles();
-
- self::deleteWebConfigFiles();
self::createWebConfigFiles();
-
self::createWebRootFiles();
}