@@ -78,7 +78,7 @@ $CONFIG = array (
7878 // This will only be effective if oidc_login_update_avatar is enabled.
7979 // * is_admin: If this value is truthy, the user is added to the admin group (optional)
8080 // * birthdate: Since attribute 'birthdate' is supported from NC version 30 onwards, this attribute
81- // can be mapped too.
81+ // can be mapped too. Accepted format: YYYY-MM-DD
8282 //
8383 // The attributes in the OIDC response are flattened by adding the nested
8484 // array key as the prefix and an underscore. Thus,
@@ -112,7 +112,7 @@ $CONFIG = array (
112112 // https://openid.net/specs/openid-connect-core-1_0.html#StandardClaims
113113 //
114114 // note: on Keycloak, OIDC name claim = "${given_name} ${family_name}" or one of them if any is missing
115- // note: for ID Austria, OIDC name claim = array('family_name', 'given_name')
115+ // note: for other IdPs providing given name and family name separately: OIDC name claim = array('family_name', 'given_name')
116116 //
117117 'oidc_login_attributes' => array (
118118 'id' => 'sub',
@@ -201,9 +201,9 @@ $CONFIG = array (
201201 // Enable use of WebDAV via OIDC bearer token.
202202 'oidc_login_webdav_enabled' => false,
203203
204- // Enable removal of special characters in UID.
204+ // Enable removal of special characters in UID. Removal by converting to URL-safe Base64.
205205 // The default value is false.
206- 'oidc_login_allow_special_characters ' => true ,
206+ 'oidc_login_remove_special_characters ' => false ,
207207
208208 // Enable authentication with user/password for DAV clients that do not
209209 // support token authentication (e.g. DAVx⁵)
0 commit comments