continuing to work on the remember me authentication.

This commit is contained in:
Taylor Otwell
2011-10-09 23:20:54 -05:00
parent 6178a968ea
commit 17385697c0
4 changed files with 69 additions and 34 deletions

View File

@@ -34,7 +34,7 @@ class Cookie implements Transporter {
// deleted until the user closes their browser.
$minutes = ( ! $config['expire_on_close']) ? $config['lifetime'] : 0;
\Laravel\Cookie::put(Cookie::key, $id, $minutes, $config['path'], $config['domain']);
\Laravel\Cookie::put(Cookie::key, $id, $minutes, $config['path'], $config['domain'], $config['secure']);
}
}