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:
authordiosmosis <benaka@piwik.pro>2014-09-30 15:42:40 +0400
committerdiosmosis <benaka@piwik.pro>2014-09-30 15:42:40 +0400
commit0401d7e82714a770a4835b1ad4a90a42fbed0f15 (patch)
tree99ced520fdfacd863e1151b858bd045b31917027 /core/Cookie.php
parent1d3e3103143a5e1dcb29dad2a8e5dbd46c0f922b (diff)
Fix #6344, add missing return statement removed from recent refactor to Cookie::get().
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 7440c5795c..993d97f1e2 100644
--- a/core/Cookie.php
+++ b/core/Cookie.php
@@ -354,7 +354,7 @@ class Cookie
$name = self::escapeValue($name);
if (false === $this->keyStore) {
if (isset($this->value[$name])) {
- self::escapeValue($this->value[$name]);
+ return self::escapeValue($this->value[$name]);
}
return false;