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>2010-05-20 12:49:42 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2010-05-20 12:49:42 +0400
commitccefb9528e223c59f575874017772bee638ecfeb (patch)
tree1fc438c3f9acbe69e4dbcf8c86d314344ce69e32 /plugins/VisitsSummary
parent21419dd54adb4b57d16f5a12d2f292b359f59b2c (diff)
Fixes #306
- Adds new columns to the existing Pages report: Bounce rate, Average time on page, Exit rate - Adds new report: Entry pages - Adds new report: Exit pages - Adding table column inline help (on hover). Note: I don't think my metrics definitions are the best, they can be improved. anyone? I tried to add this icon: http://cdn.iconfinder.net/data/icons/uidesignicons/information.png but couldn't manage to make it look pretty (icon was either not positionned properly, or when it was positionned properly, it would appear in the dashboard even for columns that are hidden - the icon appeared out of nowhere..)
Diffstat (limited to 'plugins/VisitsSummary')
-rw-r--r--plugins/VisitsSummary/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VisitsSummary/API.php b/plugins/VisitsSummary/API.php
index ad62f569e7..e3ea62e02c 100644
--- a/plugins/VisitsSummary/API.php
+++ b/plugins/VisitsSummary/API.php
@@ -55,7 +55,7 @@ class Piwik_VisitsSummary_API
$dataTable = $archive->getDataTableFromNumeric($toFetch);
if($bounceRateRequested !== false)
{
- $dataTable->filter('ColumnCallbackAddColumnPercentage', array('bounce_count', 'bounce_rate', 'nb_visits', 0));
+ $dataTable->filter('ColumnCallbackAddColumnPercentage', array('bounce_rate', 'bounce_count', 'nb_visits', 0));
$dataTable->deleteColumns($toFetch);
}
return $dataTable;