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
path: root/core
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-08-14 21:12:34 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-08-14 21:12:34 +0400
commitf56a028c52e7c4e156af5fca98fa68e1bc86a969 (patch)
treedc9567677d0d9d2fde7274c6e55f37e3a69f1505 /core
parent053173ed93ebe7a27390f4a6a45504ae83d4bffd (diff)
make sure to delete tracker cache after removing the previous files although this should be done after updating anyway.
Diffstat (limited to 'core')
-rw-r--r--core/Updates/2.5.0-rc4.php25
-rw-r--r--core/Version.php2
2 files changed, 26 insertions, 1 deletions
diff --git a/core/Updates/2.5.0-rc4.php b/core/Updates/2.5.0-rc4.php
new file mode 100644
index 0000000000..8e490c3db3
--- /dev/null
+++ b/core/Updates/2.5.0-rc4.php
@@ -0,0 +1,25 @@
+<?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\Tracker\Cache;
+use Piwik\Updates;
+
+/**
+ * Update for version 2.5.0-rc4.
+ */
+class Updates_2_5_0_rc4 extends Updates
+{
+
+ static function update()
+ {
+ Cache::clearCacheGeneral();
+ }
+}
diff --git a/core/Version.php b/core/Version.php
index 48465ea952..f612a36cfb 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -21,5 +21,5 @@ final class Version
* The current Piwik version.
* @var string
*/
- const VERSION = '2.5.0-rc3';
+ const VERSION = '2.5.0-rc4';
}