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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2011-01-04 14:19:41 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2011-01-04 14:19:41 +0300
commit365f805b2beb522f1745de28449a931515c470cb (patch)
treef5e4c3422cc37cc4436c97f7ce1096d915fdc7ff
parentc4df19a09d37739a6e01ce97193c677d67885f03 (diff)
parent55875788491bfb2b17def06c3232176a02d761e6 (diff)
-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);
}
}