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/1.10.1.php')
-rwxr-xr-xcore/Updates/1.10.1.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/core/Updates/1.10.1.php b/core/Updates/1.10.1.php
new file mode 100755
index 0000000000..73a846d176
--- /dev/null
+++ b/core/Updates/1.10.1.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ * @version $Id$
+ *
+ * @category Piwik
+ * @package Updates
+ */
+
+/**
+ * @package Updates
+ */
+class Piwik_Updates_1_10_1 extends Piwik_Updates
+{
+ static function isMajorUpdate()
+ {
+ return false;
+ }
+
+ static function update()
+ {
+ try
+ {
+ Piwik_PluginsManager::getInstance()->activatePlugin('Overlay');
+ }
+ catch(Exception $e)
+ {
+ // pass
+ }
+ }
+} \ No newline at end of file