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:
authormattab <matthieu.aubry@gmail.com>2014-12-05 12:42:43 +0300
committermattab <matthieu.aubry@gmail.com>2014-12-05 12:42:43 +0300
commit8ba4ba154aab7ac286b66ff16b59bb798ac3fb45 (patch)
tree1ed75cf396efc3965835bdfdb00a651ea8b8b7d2 /plugins/Live/Controller.php
parent7f509b059ec54109cd2d7200dc466c4944c33d53 (diff)
Refactor Live API Visitor Profile logic in own class
Diffstat (limited to 'plugins/Live/Controller.php')
-rw-r--r--plugins/Live/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Live/Controller.php b/plugins/Live/Controller.php
index 9df3e26ff8..da434412dd 100644
--- a/plugins/Live/Controller.php
+++ b/plugins/Live/Controller.php
@@ -133,7 +133,7 @@ class Controller extends \Piwik\Plugin\Controller
'date' => false
));
$view->visitData = $visits->getFirstRow()->getColumns();
- $view->visitReferralSummary = API::getReferrerSummaryForVisit($visits->getFirstRow());
+ $view->visitReferralSummary = VisitorProfile::getReferrerSummaryForVisit($visits->getFirstRow());
$view->showLocation = true;
$this->setWidgetizedVisitorProfileUrl($view);
$view->exportLink = $this->getVisitorProfileExportLink();