Bug fixed on cookie.php

This commit is contained in:
Pedro Borges
2011-07-26 10:01:55 -03:00
parent 79482dece5
commit 5742276fe6

View File

@@ -72,7 +72,7 @@ class Cookie {
*/
public static function forget($name)
{
return static::put($key, null, -60);
return static::put($name, null, -60);
}
}