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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-05-16 05:02:00 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-05-16 05:02:00 +0400
commit8d500ebc6f3a38ae1357ab1f3dff71d0ab313f2b (patch)
tree193b663b128e882e896bc7e4cc4206166fed3324
parentd7a60f2e43081a5c9d15072d3af6f42a660064d1 (diff)
- fixed #714 deleting all dashboard entries that had the last visit graph widget
this might fix most issues and minimize support (thanks vipsoft for the idea)
-rw-r--r--core/Updates/0.2.37.php4
-rw-r--r--core/Version.php2
2 files changed, 5 insertions, 1 deletions
diff --git a/core/Updates/0.2.37.php b/core/Updates/0.2.37.php
new file mode 100644
index 0000000000..87f7d94370
--- /dev/null
+++ b/core/Updates/0.2.37.php
@@ -0,0 +1,4 @@
+<?php
+
+Piwik_Query( "DELETE FROM ". Piwik::prefixTable('user_dashboard') . "
+ WHERE layout LIKE '%.getEvolutionGraph%'" );
diff --git a/core/Version.php b/core/Version.php
index 11080af687..ae3cecbb68 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -1,5 +1,5 @@
<?php
final class Piwik_Version {
- const VERSION = '0.2.36';
+ const VERSION = '0.2.37';
}