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:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-08-02 18:54:48 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-08-02 23:02:53 +0400
commit1a9898be75d875132ff09e94c08b6d8114767aee (patch)
treea340fdc45e7ea52d10e273d2383b701c2ad7d524 /core/ViewDataTable
parent392d45f156f63a4c774226fee12df66459ceab32 (diff)
Refs #4040, #4041, fix regression in default sort column of goals table.
Diffstat (limited to 'core/ViewDataTable')
-rw-r--r--core/ViewDataTable/HtmlTable/Goals.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ViewDataTable/HtmlTable/Goals.php b/core/ViewDataTable/HtmlTable/Goals.php
index 414e78d6ba..675a085807 100644
--- a/core/ViewDataTable/HtmlTable/Goals.php
+++ b/core/ViewDataTable/HtmlTable/Goals.php
@@ -92,7 +92,7 @@ class Goals extends HtmlTable
if ($this->processOnlyIdGoal > 0
&& strpos($columnNbConversionsCurrentGoal, '_nb_conversions') !== false
) {
- $this->viewProperties['filter_sort_column'] = $columnNbConversionsCurrentGoal;
+ $this->viewProperties['filter_sort_column'] = 'goal_' . $this->processOnlyIdGoal . '_nb_conversions';
$this->viewProperties['filter_sort_order'] = 'desc';
}
}