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/3.13.4-b1.php')
-rw-r--r--core/Updates/3.13.4-b1.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/core/Updates/3.13.4-b1.php b/core/Updates/3.13.4-b1.php
new file mode 100644
index 0000000000..b56a322556
--- /dev/null
+++ b/core/Updates/3.13.4-b1.php
@@ -0,0 +1,23 @@
+<?php
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link https://matomo.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\Updater;
+use Piwik\Updates as PiwikUpdates;
+
+class Updates_3_13_4_b1 extends PiwikUpdates
+{
+ public function doUpdate(Updater $updater)
+ {
+ // Fix issue with HeatmapSessionRecording on IIS (https://github.com/matomo-org/matomo/issues/15651)
+ ServerFilesGenerator::createFilesForSecurity();
+ }
+}