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-03-10 02:24:04 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-03-11 04:34:47 +0300
commit2a1dcbd35ec0fd8dd8a384fe00671bf37ec7fd3e (patch)
tree9e73d85aa8bd9f354bb695c5d5484655f77d46f3 /core/DataTable/Filter/Sort.php
parent3db2044b94b411ac7c13e417582d06cd9c760acf (diff)
Made for reports faster when flat=1 is used.
Also replaceColumnNames is now queued again which should bring a performance boost in general.
Diffstat (limited to 'core/DataTable/Filter/Sort.php')
-rw-r--r--core/DataTable/Filter/Sort.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/DataTable/Filter/Sort.php b/core/DataTable/Filter/Sort.php
index 632da35dc8..3da11b4119 100644
--- a/core/DataTable/Filter/Sort.php
+++ b/core/DataTable/Filter/Sort.php
@@ -143,9 +143,9 @@ Sort extends BaseFilter
);
}
- protected function getColumnValue(Row $table )
+ protected function getColumnValue(Row $row)
{
- $value = $table->getColumn($this->columnToSort);
+ $value = $row->getColumn($this->columnToSort);
if ($value === false
|| is_array($value)