Merge pull request #663 from cviebrock/develop
Fix order of elements for Cookie::put() in Auth driver
This commit is contained in:
commit
94f49c3627
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue