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:
Diffstat (limited to 'core/Updates/2.15.0-b4.php')
-rw-r--r--core/Updates/2.15.0-b4.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/core/Updates/2.15.0-b4.php b/core/Updates/2.15.0-b4.php
deleted file mode 100644
index 132c331981..0000000000
--- a/core/Updates/2.15.0-b4.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-/**
- * Piwik - free/libre analytics platform
- *
- * @link http://piwik.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- *
- */
-namespace Piwik\Updates;
-
-use Piwik\Plugins\Installation\ServerFilesGenerator;
-use Piwik\Updates;
-use Piwik\Updater;
-
-/**
- */
-class Updates_2_15_0_b4 extends Updates
-{
- public function doUpdate(Updater $updater)
- {
- // added .ttf whitelisted file for apache webserver
- ServerFilesGenerator::deleteHtAccessFiles();
- ServerFilesGenerator::createHtAccessFiles();
- }
-}