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:
authorStefan Giehl <stefan@piwik.org>2018-10-12 22:17:40 +0300
committerGitHub <noreply@github.com>2018-10-12 22:17:40 +0300
commitdbc90fb0fde60e8cc4b8026efa985a13474b1dda (patch)
treef8f9c7dae0720acaf0c8ad36f6788f2a9433fec0 /plugins/API
parent8ba828c91e9b6fb337989935648d710128bb645a (diff)
Fix undefined variable on PHP 7.3 (#13593)
Diffstat (limited to 'plugins/API')
-rw-r--r--plugins/API/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/API/API.php b/plugins/API/API.php
index 6f968a3efe..f27a38d13f 100644
--- a/plugins/API/API.php
+++ b/plugins/API/API.php
@@ -398,7 +398,7 @@ class API extends \Piwik\Plugin\API
krsort($columnsByPlugin);
$mergedDataTable = false;
- $params = compact('idSite', 'period', 'date', 'segment', 'idGoal');
+ $params = compact('idSite', 'period', 'date', 'segment');
foreach ($columnsByPlugin as $plugin => $columns) {
// load the data
$className = Request::getClassNameAPI($plugin);