Update modified to Kohana r3823 (svn merge -c19322 vendor/kohana/modified/kohana trunk/kohana)

This commit is contained in:
Bharat Mediratta
2008-12-20 07:38:46 +00:00
parent ad0ddc236c
commit 64f993db6f
8 changed files with 130 additions and 94 deletions
+2 -2
View File
@@ -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);
}