mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-29 19:20:52 -04:00
Update modified to Kohana r3823 (svn merge -c19322 vendor/kohana/modified/kohana trunk/kohana)
This commit is contained in:
@@ -130,9 +130,9 @@ class Input_Core {
|
||||
foreach ($_COOKIE as $key => $val)
|
||||
{
|
||||
// Ignore special attributes in RFC2109 compliant cookies
|
||||
if ($key == '$Version' || $key == '$Path' || $key == '$Domain') {
|
||||
if ($key == '$Version' OR $key == '$Path' OR $key == '$Domain')
|
||||
continue;
|
||||
}
|
||||
|
||||
// Sanitize $_COOKIE
|
||||
$_COOKIE[$this->clean_input_keys($key)] = $this->clean_input_data($val);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user