Browse Source

Order of elements for Cookie::put() was wrong
Signed-off-by: Colin Viebrock <colin@viebrock.ca>

Colin Viebrock 12 years ago
parent
commit
97de6ef1d7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/auth/drivers/driver.php

+ 1 - 1
laravel/auth/drivers/driver.php

@@ -188,7 +188,7 @@ abstract class Driver {
 
 		extract($config);
 
-		Cookie::put($name, $minutes, $value, $path, $domain, $secure);
+		Cookie::put($name, $value, $minutes, $path, $domain, $secure);
 	}
 
 	/**