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:
authorThomas Steur <thomas.steur@gmail.com>2015-11-04 05:30:26 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-11-24 04:04:01 +0300
commitd995029b91f38bd81fbbb50f4d058f3b6b3c18a2 (patch)
tree3ba63b979bde2da095ddb06bb66fe92b2d72c31b /core/Plugin/RequestProcessors.php
parentf9c851190ed680eb430d9d52040b72c7cf73f62a (diff)
refs #9129 added feature Custom Dimensions
Diffstat (limited to 'core/Plugin/RequestProcessors.php')
-rw-r--r--core/Plugin/RequestProcessors.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Plugin/RequestProcessors.php b/core/Plugin/RequestProcessors.php
index ef69eb59d5..827274485e 100644
--- a/core/Plugin/RequestProcessors.php
+++ b/core/Plugin/RequestProcessors.php
@@ -14,7 +14,8 @@ class RequestProcessors
{
public function getRequestProcessors()
{
- $processors = Manager::getInstance()->findMultipleComponents('Tracker', 'Piwik\\Tracker\\RequestProcessor');
+ $manager = Manager::getInstance();
+ $processors = $manager->findMultipleComponents('Tracker', 'Piwik\\Tracker\\RequestProcessor');
$instances = array();
foreach ($processors as $processor) {