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
path: root/core
diff options
context:
space:
mode:
authorPeter Zhang <peter@innocraft.com>2022-08-04 16:39:40 +0300
committerGitHub <noreply@github.com>2022-08-04 16:39:40 +0300
commite7d7ece730e4aa5a48f3c71c98f8bdee71e0c601 (patch)
treed65f1532ce67004917bcc12c658d7b23882d9fdf /core
parent49819504f869d825840324a8b0b9c865838348c6 (diff)
update tracking config (#19495)
update tracking config
Diffstat (limited to 'core')
-rw-r--r--core/Tracker/TrackerConfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Tracker/TrackerConfig.php b/core/Tracker/TrackerConfig.php
index 3647bc7b87..06fc89313d 100644
--- a/core/Tracker/TrackerConfig.php
+++ b/core/Tracker/TrackerConfig.php
@@ -32,7 +32,7 @@ class TrackerConfig
$siteSpecificConfig = self::getSiteSpecificConfig($idSite);
$config = array_merge($config, $siteSpecificConfig);
}
- return $config[$name];
+ return $config[$name] ?? null;
}
private static function getConfig()