Skip to content
Snippets Groups Projects
Commit caed605e authored by Tim van Dijen's avatar Tim van Dijen
Browse files

PHP 7.4 will not cast null to an empty string

parent fd3b2f9e
No related branches found
No related tags found
No related merge requests found
...@@ -544,7 +544,7 @@ $config = [ ...@@ -544,7 +544,7 @@ $config = [
* Example: * Example:
* 'session.cookie.domain' => '.example.org', * 'session.cookie.domain' => '.example.org',
*/ */
'session.cookie.domain' => null, 'session.cookie.domain' => '',
/* /*
* Set the secure flag in the cookie. * Set the secure flag in the cookie.
...@@ -788,7 +788,7 @@ $config = [ ...@@ -788,7 +788,7 @@ $config = [
* Options to override the default settings for the language cookie * Options to override the default settings for the language cookie
*/ */
'language.cookie.name' => 'language', 'language.cookie.name' => 'language',
'language.cookie.domain' => null, 'language.cookie.domain' => '',
'language.cookie.path' => '/', 'language.cookie.path' => '/',
'language.cookie.secure' => true, 'language.cookie.secure' => true,
'language.cookie.httponly' => false, 'language.cookie.httponly' => false,
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "simplesamlphp",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2", "@fortawesome/fontawesome-free": "^5.15.2",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment