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 'core/Cookie.php')
-rw-r--r--core/Cookie.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Cookie.php b/core/Cookie.php
index 6c5d65c044..20911714c2 100644
--- a/core/Cookie.php
+++ b/core/Cookie.php
@@ -233,7 +233,7 @@ class Piwik_Cookie
}
else
{
- $varValue = json_decode(base64_decode($varValue), $assoc = true);
+ $varValue = @json_decode(base64_decode($varValue), $assoc = true);
}
}