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:
authordiosmosis <diosmosis@users.noreply.github.com>2019-07-11 23:32:57 +0300
committerGitHub <noreply@github.com>2019-07-11 23:32:57 +0300
commitf0c53c46789945777cbaaf1108b7681d0fe420c8 (patch)
tree9138a0ea2249cc4cc531da2b40d559322948c267 /plugins/Goals/Tracker/GoalsRequestProcessor.php
parent273f507eee7538bb9ccebd8f1bb896c64d986057 (diff)
New goal type to match one goal type in GA (#14508)
* start adding new goal type * Add new goal type to UI + tracker + add tests. * Cache pageview count query result. * Apply pr feedback * remove debugging code * remove unused code * Apply review feedback. * fix test * Apply review comments.
Diffstat (limited to 'plugins/Goals/Tracker/GoalsRequestProcessor.php')
-rw-r--r--plugins/Goals/Tracker/GoalsRequestProcessor.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Goals/Tracker/GoalsRequestProcessor.php b/plugins/Goals/Tracker/GoalsRequestProcessor.php
index 0e52ed5ee6..e15a17042e 100644
--- a/plugins/Goals/Tracker/GoalsRequestProcessor.php
+++ b/plugins/Goals/Tracker/GoalsRequestProcessor.php
@@ -89,7 +89,7 @@ class GoalsRequestProcessor extends RequestProcessor
if (empty($goalsConverted)
&& $action
) {
- $goalsConverted = $this->goalManager->detectGoalsMatchingUrl($request->getIdSite(), $action);
+ $goalsConverted = $this->goalManager->detectGoalsMatchingUrl($request->getIdSite(), $action, $visitProperties, $request);
$existingGoalsConverted = $request->getMetadata('Goals', 'goalsConverted') ?: array();
$request->setMetadata('Goals', 'goalsConverted', array_merge($existingGoalsConverted, $goalsConverted));