Fixes to make SO login work. GitHub now works also (was a FF plugin bug)

This commit is contained in:
2018-07-10 22:57:50 +02:00
parent d74b76da3e
commit be3164e997
10 changed files with 53 additions and 15 deletions
+6
View File
@@ -220,4 +220,10 @@ return [
// -------------- added keys --------------
'pretty_json' => env('PRETTY_JSON', false),
'debug_blacklist' => [
'_COOKIE' => array_keys($_COOKIE),
'_SERVER' => array_keys($_SERVER),
'_ENV' => array_keys($_ENV),
],
];
+2 -2
View File
@@ -177,7 +177,7 @@ return [
|
*/
'http_only' => true,
'http_only' => env('SESSION_HTTPONLY', true),
/*
|--------------------------------------------------------------------------
@@ -192,6 +192,6 @@ return [
|
*/
'same_site' => 'lax', // this was changed, leaving it as 'null' caused session to be reset during oAuth2 login
'same_site' => env('SESSION_SAMESITE', null), // this was changed, leaving it as 'null' caused session to be reset during oAuth2 login
];