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>2014-01-22 05:48:56 +0400
committerThomas Steur <thomas.steur@gmail.com>2014-01-22 05:49:07 +0400
commitc1418485c492a3fb6952955e7c746ea54cf55049 (patch)
tree0427136d80f88b5ebe9aa93687a2a82b28153402 /plugins
parenta929eff706c5a77dbae38f1c11ee1ae2e4bfe089 (diff)
fixes #4541 sort column changes when selecting another metric in VisitTime
Diffstat (limited to 'plugins')
-rw-r--r--plugins/VisitTime/VisitTime.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/VisitTime/VisitTime.php b/plugins/VisitTime/VisitTime.php
index d4a7e67c56..09c7c82d21 100644
--- a/plugins/VisitTime/VisitTime.php
+++ b/plugins/VisitTime/VisitTime.php
@@ -226,6 +226,7 @@ class VisitTime extends \Piwik\Plugin
{
$view->requestConfig->filter_sort_column = 'label';
$view->requestConfig->filter_sort_order = 'asc';
+ $view->requestConfig->addPropertiesThatShouldBeAvailableClientSide(array('filter_sort_column'));
$view->config->show_search = false;
$view->config->show_limit_control = false;
$view->config->show_exclude_low_population = false;