Merge pull request #663 from cviebrock/develop

Fix order of elements for Cookie::put() in Auth driver
This commit is contained in:
Taylor Otwell 2012-05-10 20:07:23 -07:00
commit 94f49c3627
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ protected function cookie($name, $value, $minutes)
extract($config); extract($config);
Cookie::put($name, $minutes, $value, $path, $domain, $secure); Cookie::put($name, $value, $minutes, $path, $domain, $secure);
} }
/** /**