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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-11-27 17:23:43 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-11-27 17:23:43 +0300
commit4e219e09d00212e34681d52bbdbfb74f18597b88 (patch)
tree742782c809e0f1b143ffa0809edd68303629c62f /core/ViewDataTable.php
parent15821862cb5fb9c7c6021d7e3a2598a3d509a086 (diff)
- summary row label should not be -1 in actions now
- all columns should not be "low population excluded" by default now. can switch to exclude low population when viewing all columns table - i18n on new icon - i18n on Actions table column labels - fixed truncation which should hopefully fix most of display issues when viewing all columns - subtables have more space efficient padding now
Diffstat (limited to 'core/ViewDataTable.php')
-rw-r--r--core/ViewDataTable.php14
1 files changed, 2 insertions, 12 deletions
diff --git a/core/ViewDataTable.php b/core/ViewDataTable.php
index e25b227ef1..224e627e60 100644
--- a/core/ViewDataTable.php
+++ b/core/ViewDataTable.php
@@ -487,9 +487,6 @@ abstract class Piwik_ViewDataTable
$javascriptVariablesToSet['actionToLoadTheSubTable'] = $this->actionToLoadTheSubTable;
}
-// var_dump($this->variablesDefault);
-// var_dump($javascriptVariablesToSet); exit;
-
if($this->dataTable)
{
$javascriptVariablesToSet['totalRows'] = $this->dataTable->getRowsCountBeforeLimitFilter();
@@ -641,15 +638,8 @@ abstract class Piwik_ViewDataTable
$columnName = Piwik_Archive::INDEX_NB_VISITS;
}
- // column to use to enable low population exclusion if != false
- $this->variablesDefault['filter_excludelowpop_default']
- = $this->variablesDefault['filter_excludelowpop']
- = $columnName;
-
- // the minimum value a row must have to be returned
- $this->variablesDefault['filter_excludelowpop_value_default']
- = $this->variablesDefault['filter_excludelowpop_value']
- = $minValue;
+ $this->variablesDefault['filter_excludelowpop'] = $columnName;
+ $this->variablesDefault['filter_excludelowpop_value'] = $minValue;
}
/**