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>2008-10-29 20:19:06 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-10-29 20:19:06 +0300
commitae5eadd30a583c5d85db32e3b5e2bfae78bd85a3 (patch)
treead47c42f2bd4f4cf4148225f132525dd52bead23 /plugins/Referers/Controller.php
parentdf5d9dde49a1b4da4030cb2ca8ca63327fd3d53f (diff)
- fix #379 Internal API permission issues
Diffstat (limited to 'plugins/Referers/Controller.php')
-rw-r--r--plugins/Referers/Controller.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/Referers/Controller.php b/plugins/Referers/Controller.php
index 37bcfbdc39..5051a00a35 100644
--- a/plugins/Referers/Controller.php
+++ b/plugins/Referers/Controller.php
@@ -236,7 +236,9 @@ class Piwik_Referers_Controller extends Piwik_Controller
// we disable the queued filters because here we want to get the visits coming from search engines
// if the filters were applied we would have to look up for a label looking like "Search Engines"
// which is not good when we have translations
- $requestString = 'method='."Referers.getRefererType".'&format=original'.'&disable_queued_filters=1';
+ $requestString = "method=Referers.getRefererType
+ &format=original
+ &disable_queued_filters=1";
$request = new Piwik_API_Request($requestString);
return $request->process();
}