Browse Source

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

Taylor Otwell 13 years ago
parent
commit
6810b99d38
2 changed files with 3 additions and 3 deletions
  1. 2 2
      laravel/autoloader.php
  2. 1 1
      laravel/cookie.php

+ 2 - 2
laravel/autoloader.php

@@ -19,8 +19,8 @@ class Autoloader {
 	/**
 	 * Load the file corresponding to a given class.
 	 *
-	 * Laravel loads classes out of three directorys: the core "laravel" directory,
-	 * and the application "models" and "libraires" directories. All of the file
+	 * Laravel loads classes out of three directories: the core "laravel" directory,
+	 * and the application "models" and "libraries" directories. All of the file
 	 * names are lower cased and the directory structure corresponds with the
 	 * class namespaces.
 	 *

+ 1 - 1
laravel/cookie.php

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