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:
Diffstat (limited to 'plugins/Referrers/Controller.php')
-rw-r--r--plugins/Referrers/Controller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Referrers/Controller.php b/plugins/Referrers/Controller.php
index e5f1cf6e27..531baf29ed 100644
--- a/plugins/Referrers/Controller.php
+++ b/plugins/Referrers/Controller.php
@@ -30,7 +30,7 @@ class Controller extends \Piwik\Plugin\Controller
{
$view = new View('@Referrers/index');
- $view->graphEvolutionReferrers = $this->getEvolutionGraph(true, Common::REFERRER_TYPE_DIRECT_ENTRY, array('nb_visits'));
+ $view->graphEvolutionReferrers = $this->getEvolutionGraph(Common::REFERRER_TYPE_DIRECT_ENTRY, array('nb_visits'));
$view->nameGraphEvolutionReferrers = 'Referrers.getEvolutionGraph';
// building the referrers summary report
@@ -256,7 +256,7 @@ class Controller extends \Piwik\Plugin\Controller
Common::REFERRER_TYPE_CAMPAIGN => 'Referrers_Campaigns',
);
- public function getEvolutionGraph($fetch = false, $typeReferrer = false, array $columns = array())
+ public function getEvolutionGraph($typeReferrer = false, array $columns = array())
{
$view = $this->getLastUnitGraph($this->pluginName, __FUNCTION__, 'Referrers.getReferrerType');