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.10.0-b7.php')
-rw-r--r--core/Updates/2.10.0-b7.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/Updates/2.10.0-b7.php b/core/Updates/2.10.0-b7.php
index a44117fc81..21a5e7b1af 100644
--- a/core/Updates/2.10.0-b7.php
+++ b/core/Updates/2.10.0-b7.php
@@ -38,6 +38,13 @@ class Updates_2_10_0_b7 extends Updates
static function update()
{
Updater::updateDatabase(__FILE__, self::getSql());
+
+ $pluginManager = \Piwik\Plugin\Manager::getInstance();
+
+ try {
+ $pluginManager->activatePlugin('Resolution');
+ } catch(\Exception $e) {
+ }
}
}