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>2009-03-31 03:27:14 +0400
committermattpiwik <matthieu.aubry@gmail.com>2009-03-31 03:27:14 +0400
commitd9cdb177a71428968e94566f3d5628360a4befee (patch)
treee459e19ad3b4b2932ba7d12335041bf3307f56b3 /core/DataTable/Filter/AddSummaryRow.php
parent7a9848037153ebda23cce12696a1706751dd97d0 (diff)
- fixing ordering on graphs
- adding documentation to specify that plugins can define their own translation files git-svn-id: http://dev.piwik.org/svn/trunk@1044 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/DataTable/Filter/AddSummaryRow.php')
-rw-r--r--core/DataTable/Filter/AddSummaryRow.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/DataTable/Filter/AddSummaryRow.php b/core/DataTable/Filter/AddSummaryRow.php
index a14797ba60..e98133f026 100644
--- a/core/DataTable/Filter/AddSummaryRow.php
+++ b/core/DataTable/Filter/AddSummaryRow.php
@@ -45,7 +45,9 @@ class Piwik_DataTable_Filter_AddSummaryRow extends Piwik_DataTable_Filter
protected function filter()
{
- $filter = new Piwik_DataTable_Filter_Sort($this->table, $this->columnToSortByBeforeTruncating, 'desc');
+ $filter = new Piwik_DataTable_Filter_Sort($this->table,
+ $this->columnToSortByBeforeTruncating,
+ 'desc');
$rows = $this->table->getRows();
$count = $this->table->getRowsCount();