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>2011-04-28 14:48:23 +0400
committermattpiwik <matthieu.aubry@gmail.com>2011-04-28 14:48:23 +0400
commit333478a9fdebc1afde9387b5957cffb0f87835b9 (patch)
tree3676efff31c224733858a51e860af93d74e2433c /plugins/VisitorInterest/Controller.php
parent9fb6d8ee27ec0526c9a9528eae512df0d803799a (diff)
Properly order 'visits per number of pages' and 'visits per duration' tables
git-svn-id: http://dev.piwik.org/svn/trunk@4588 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/VisitorInterest/Controller.php')
-rw-r--r--plugins/VisitorInterest/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VisitorInterest/Controller.php b/plugins/VisitorInterest/Controller.php
index f4569f0141..524ea6ccd8 100644
--- a/plugins/VisitorInterest/Controller.php
+++ b/plugins/VisitorInterest/Controller.php
@@ -45,7 +45,7 @@ class Piwik_VisitorInterest_Controller extends Piwik_Controller
$view = Piwik_ViewDataTable::factory( 'cloud' );
$view->init( $this->pluginName, __FUNCTION__, "VisitorInterest.getNumberOfVisitsPerPage" );
$view->setColumnsToDisplay( array('label','nb_visits') );
- $view->setSortedColumn( 'nb_visits', 'asc' );
+ $view->setSortedColumn( 'label', 'asc' );
$view->setColumnTranslation('label', Piwik_Translate('VisitorInterest_ColumnPagesPerVisit'));
$view->disableExcludeLowPopulation();
$view->disableOffsetInformationAndPaginationControls();