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:
-rwxr-xr-xcore/Updates/1.10-b4.php8
-rwxr-xr-xcore/Updates/1.10.1.php34
-rw-r--r--core/Version.php2
3 files changed, 35 insertions, 9 deletions
diff --git a/core/Updates/1.10-b4.php b/core/Updates/1.10-b4.php
index 9418c5cc99..50c692ac67 100755
--- a/core/Updates/1.10-b4.php
+++ b/core/Updates/1.10-b4.php
@@ -30,13 +30,5 @@ class Piwik_Updates_1_10_b4 extends Piwik_Updates
{
// pass
}
- try
- {
- Piwik_PluginsManager::getInstance()->activatePlugin('Overlay');
- }
- catch(Exception $e)
- {
- // pass
- }
}
} \ No newline at end of file
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
diff --git a/core/Version.php b/core/Version.php
index 626cf84c8f..72f3596d23 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -21,5 +21,5 @@ final class Piwik_Version
* Current Piwik version
* @var string
*/
- const VERSION = '1.10';
+ const VERSION = '1.10.1';
}