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
commit 6b77cc984e
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public static function put($name, $value, $minutes = 0, $path = '/', $domain = n
*/
public static function forget($name)
{
return static::put($key, null, -60);
return static::put($name, null, -60);
}
}