Commit 99adf09a authored by Taylor Otwell's avatar Taylor Otwell

fixed conflicts.

parents f580ef7f 812d3ff5
# Laravel Change Log
## Version 1.5.5
- Fix bug in session class cookie option extraction.
### Upgrading From 1.5.4
- Replace **system** directory.
## Version 1.5.4
- Fix bug in Eloquent belongs_to relationship eager loading.
......
......@@ -233,7 +233,7 @@ abstract class Driver {
{
$minutes = (Config::get('session.expire_on_close')) ? 0 : Config::get('session.lifetime');
Cookie::put('laravel_session', static::$session['id'], $minutes, Config::get('session.path'), Config::get('session.domain'), Config::get('session.https'), Config::get('http_only'));
Cookie::put('laravel_session', static::$session['id'], $minutes, Config::get('session.path'), Config::get('session.domain'), Config::get('session.https'), Config::get('session.http_only'));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment