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:
authorThomas Steur <thomas.steur@gmail.com>2015-02-04 23:12:46 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-02-04 23:12:46 +0300
commita9c7845f406c147971eb407b087769378ee88bb0 (patch)
treecf2490ce2ae5afacb41afa3b597f644ba76a2725 /plugins/Insights
parenteb444892b6ec63c292996f263a34e02eb3394d10 (diff)
refs #6790 when exporting a report we need to apply the same request params that were used to render the datatable.
This will not only fix this bug but should also fix potential other bugs where request params were not forwarded. For example an abandonedCarts param in Ecommerce, or hideFutureHoursWhenToday in VisitTime.
Diffstat (limited to 'plugins/Insights')
-rw-r--r--plugins/Insights/Visualizations/Insight.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Insights/Visualizations/Insight.php b/plugins/Insights/Visualizations/Insight.php
index a22206d698..7fe304e5be 100644
--- a/plugins/Insights/Visualizations/Insight.php
+++ b/plugins/Insights/Visualizations/Insight.php
@@ -93,6 +93,7 @@ class Insight extends Visualization
$this->config->show_pagination_control = false;
$this->config->show_offset_information = false;
$this->config->show_search = false;
+ $this->config->show_export_as_rss_feed = false;
if (!self::canDisplayViewDataTable($this)) {
$this->assignTemplateVar('cannotDisplayReport', true);