Commit 6810b99d authored by Taylor Otwell's avatar Taylor Otwell

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

parent 83d927c4
...@@ -19,8 +19,8 @@ class Autoloader { ...@@ -19,8 +19,8 @@ class Autoloader {
/** /**
* Load the file corresponding to a given class. * Load the file corresponding to a given class.
* *
* Laravel loads classes out of three directorys: the core "laravel" directory, * Laravel loads classes out of three directories: the core "laravel" directory,
* and the application "models" and "libraires" directories. All of the file * and the application "models" and "libraries" directories. All of the file
* names are lower cased and the directory structure corresponds with the * names are lower cased and the directory structure corresponds with the
* class namespaces. * class namespaces.
* *
......
...@@ -125,7 +125,7 @@ class Cookie { ...@@ -125,7 +125,7 @@ class Cookie {
*/ */
public static function forget($name) public static function forget($name)
{ {
return static::put($name, null, -60); return static::put($name, null, -1500);
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment