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>2013-10-07 08:29:24 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-07 08:29:26 +0400
commita27771ee5a807eccbed9c9bc62262e79f59fe065 (patch)
tree4a15c24a9a4d7b4d79134a985c11c4e68168261e /plugins/ExamplePlugin/ExamplePlugin.php
parent6aa7ab6538cdd84af0b89b6e2d2d9524600ac5f2 (diff)
Refs #4125 Renaming plugin from Referers to Referrers
* updating all variables/methods containing Referers * RENAMING custom segments definition, and custom scheduled reports definition, so that when they load "Referers" segment/report it still works as expected * RENAMING old archived data so that archived blobs are called Referrers * Reverting part of 0deb2bbb8d5598200f7adfbc77b190516f919e48 * Update integration tests generating PDF+HTML with images on my dev box (GD 2.1 and PHP 5.5)
Diffstat (limited to 'plugins/ExamplePlugin/ExamplePlugin.php')
-rw-r--r--plugins/ExamplePlugin/ExamplePlugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExamplePlugin/ExamplePlugin.php b/plugins/ExamplePlugin/ExamplePlugin.php
index ccc6897465..6bf92427a2 100644
--- a/plugins/ExamplePlugin/ExamplePlugin.php
+++ b/plugins/ExamplePlugin/ExamplePlugin.php
@@ -42,7 +42,7 @@ class ExamplePlugin extends \Piwik\Plugin
public function addUniqueVisitorsColumnToGivenReport($view)
{
$view = $view['view'];
- if ($view->getCurrentControllerName() == 'Referers'
+ if ($view->getCurrentControllerName() == 'Referrers'
&& $view->getCurrentControllerAction() == 'getWebsites'
) {
$view->columns_to_display[] = 'nb_uniq_visitors';