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-04-06 10:46:59 +0400
committermattpiwik <matthieu.aubry@gmail.com>2009-04-06 10:46:59 +0400
commitf2d9eeb063b2c43fba4e3d9d2e64c915226b1d3b (patch)
treedfeea1da48bddd1c5f0e24660e85ecafb207c74f /core/DataTable/Filter/AddSummaryRow.php
parent4c02aee97947b8e267f442816a66b9099913358d (diff)
- make sure all "Others" type legends are correct on all graphs
- regression: 'label' should always be first column, prettier in API results - translate some text in plugin + show how easy it is to translate a plugin git-svn-id: http://dev.piwik.org/svn/trunk@1047 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/DataTable/Filter/AddSummaryRow.php')
-rw-r--r--core/DataTable/Filter/AddSummaryRow.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/DataTable/Filter/AddSummaryRow.php b/core/DataTable/Filter/AddSummaryRow.php
index 95b90198e9..073cf02b2b 100644
--- a/core/DataTable/Filter/AddSummaryRow.php
+++ b/core/DataTable/Filter/AddSummaryRow.php
@@ -65,7 +65,7 @@ class Piwik_DataTable_Filter_AddSummaryRow extends Piwik_DataTable_Filter
}
}
- $newRow->addColumn('label', $this->labelSummaryRow);
+ $newRow->setColumns(array('label' => $this->labelSummaryRow) + $newRow->getColumns());
$this->table->filter('Piwik_DataTable_Filter_Limit', array(0, $this->startRowToSummarize));
$this->table->addSummaryRow($newRow);
}