-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Description
This line probably doesn't do what it was supposed to:
'baseurlpath' => getenv('SIMPLESAMLPHP_IDP_BASE_URL') ?: '' . 'simplesaml/',
. has precedence over ?:, so
- if the environment variable is defined,
baseurlpathwill have its value -- instead of<value> . 'simplesaml/' - otherwise,
baseurlpathwill be equal to'simplesaml/'.
Suggested fix:
'baseurlpath' => (getenv('SIMPLESAMLPHP_IDP_BASE_URL') ?: '') . 'simplesaml/',
krazygit
Metadata
Metadata
Assignees
Labels
No labels