🔧 Slugify new session.cookie to comply with RFC 6265.

This commit is contained in:
Yitzchok Willroth 2017-06-29 13:42:31 -04:00
parent a7f2c060b2
commit 28719679b7
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@
| |
*/ */
'cookie' => env('SESSION_COOKIE', snake_case(env('APP_NAME', 'laravel')).'_session'), 'cookie' => env('SESSION_COOKIE', str_slug(env('APP_NAME', 'laravel'), '_').'_session'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------