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.16.0-rc2.php')
-rw-r--r--core/Updates/2.16.0-rc2.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/core/Updates/2.16.0-rc2.php b/core/Updates/2.16.0-rc2.php
deleted file mode 100644
index 2bddb6b5cb..0000000000
--- a/core/Updates/2.16.0-rc2.php
+++ /dev/null
@@ -1,28 +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\Updater;
-use Piwik\Updates;
-
-class Updates_2_16_0_rc2 extends Updates
-{
- public function doUpdate(Updater $updater)
- {
- $pluginManager = \Piwik\Plugin\Manager::getInstance();
- $pluginName = 'PiwikPro';
-
- try {
- if (!$pluginManager->isPluginActivated($pluginName)) {
- $pluginManager->activatePlugin($pluginName);
- }
- } catch (\Exception $e) {
- }
- }
-} \ No newline at end of file