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:
Diffstat (limited to 'config/global.php')
-rw-r--r--config/global.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/global.php b/config/global.php
index 14fb7b50aa..4be44c4dbd 100644
--- a/config/global.php
+++ b/config/global.php
@@ -179,9 +179,9 @@ return array(
* This defines a list of hostnames Matomo's Http class will deny requests to. Wildcards (*) can be used in the
* beginning to match any subdomain level or in the end to match any tlds
*/
- 'http.blocklist.hosts' => DI\add([
- '*.amazonaws.com'
- ]),
+ 'http.blocklist.hosts' => [
+ '*.amazonaws.com',
+ ],
'Piwik\Tracker\VisitorRecognizer' => DI\autowire()
->constructorParameter('trustCookiesOnly', DI\get('ini.Tracker.trust_visitors_cookies'))