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:
-rw-r--r--core/Cookie.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Cookie.php b/core/Cookie.php
index d50a58ef97..02bb1a2aee 100644
--- a/core/Cookie.php
+++ b/core/Cookie.php
@@ -193,7 +193,7 @@ class Piwik_Cookie
private function extractSignedContent($content)
{
$signature = substr($content, -40);
- if(!substr_compare($content, self::VALUE_SEPARATOR . '_=', -43, 3) &&
+ if(substr($content, -43, 3) == self::VALUE_SEPARATOR . '_=' &&
$signature == sha1(substr($content, 0, -40) . Piwik_Common::getSalt()))
{
// strip trailing: VALUE_SEPARATOR '_=' signature"