Merge pull request #32 from pedroborges/master

Bug fixed on cookie.php
This commit is contained in:
Taylor Otwell
2011-07-26 06:10:50 -07:00

View File

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