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:
authormattpiwik <matthieu.aubry@gmail.com>2013-01-16 08:37:59 +0400
committermattpiwik <matthieu.aubry@gmail.com>2013-01-16 08:37:59 +0400
commit394ae22b86d32c1b4bceb83a981c268abbe2cae1 (patch)
tree55af07d67c45c4f4fc42dcf96c3a3436c59e2c1f
parentaa6f5c9c0ea9ed8759dc92bfc8cc1ce11795855f (diff)
1.10.1 fixes a few non critical bug reported by early users of Piwik 1.101.10.1
git-svn-id: http://dev.piwik.org/svn/trunk@7763 59fd770c-687e-43c8-a1e3-f5a4ff64c105
-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';
}