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:
authorrobocoder <anthon.pang@gmail.com>2011-01-05 10:49:49 +0300
committerrobocoder <anthon.pang@gmail.com>2011-01-05 10:49:49 +0300
commitbc611406b24be9de47e3773ae65ed2d1521b0166 (patch)
tree9e001daa55233ef28a2f20b8e537e4d7a39d42e1 /plugins/VisitsSummary
parente49792bdb22d6231d0b76854d18be2483fec6af7 (diff)
not supported by php 5.2.2 and below
git-svn-id: http://dev.piwik.org/svn/trunk@3631 59fd770c-687e-43c8-a1e3-f5a4ff64c105
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 63f7d99693..572e7ceb89 100644
--- a/plugins/VisitsSummary/API.php
+++ b/plugins/VisitsSummary/API.php
@@ -139,7 +139,7 @@ class Piwik_VisitsSummary_API
{
$table = $this->getSumVisitsLength( $idSite, $period, $date );
if($table instanceof Piwik_DataTable_Array) {
- $table->filter('ColumnCallbackReplace', array(0, 'Piwik::getPrettyTimeFromSeconds'));
+ $table->filter('ColumnCallbackReplace', array(0, array('Piwik', 'getPrettyTimeFromSeconds')));
} else {
$table = Piwik::getPrettyTimeFromSeconds($table);
}