Bug fixed on cookie.php

This commit is contained in:
Pedro Borges 2011-07-26 10:01:55 -03:00
parent 79482dece5
commit 5742276fe6
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);
}
}