change cookie forget time to be 25 hours in the past to cover strange timezone issues.

This commit is contained in:
Taylor Otwell
2011-11-01 20:04:00 -05:00
parent 83d927c4f1
commit 6810b99d38
2 changed files with 3 additions and 3 deletions

View File

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