Index: branches/5.3.x/core/kernel/utility/http_query.php =================================================================== diff -u -N -r15483 -r15650 --- branches/5.3.x/core/kernel/utility/http_query.php (.../http_query.php) (revision 15483) +++ branches/5.3.x/core/kernel/utility/http_query.php (.../http_query.php) (revision 15650) @@ -1,6 +1,6 @@ Cookie = $this->AddVars($_COOKIE); + $cookie_hasher = $this->Application->makeClass('kCookieHasher'); + /* @var $cookie_hasher kCookieHasher */ + + $parsed_cookies = Array (); + + foreach ($_COOKIE as $cookie_name => $encrypted_value) { + $parsed_cookies[$cookie_name] = $cookie_hasher->decrypt($cookie_name, $encrypted_value); + } + + $this->Cookie = $this->AddVars($parsed_cookies); break; /*case 'E'; @@ -758,4 +767,4 @@ return !count($this->Get); } -} \ No newline at end of file +}