Skip to content

Commit

Permalink
Merge branch 'feature-SAML-19_authn-context-behaviour-fix' into relea…
Browse files Browse the repository at this point in the history
…se-6.1.0
  • Loading branch information
DominicWatson committed Aug 30, 2024
2 parents 89c0619 + ce188d9 commit afc27df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions services/saml/idp/SamlIdentityProviderService.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,10 @@ component {
StructAppend( provider, pr, false );
}

provider.title = $translateResource( uri="saml2.identityProviders:#providerId#.title" , defaultValue=providerId );
provider.description = $translateResource( uri="saml2.identityProviders:#providerId#.description", defaultValue="" );
provider.title = $translateResource( uri="saml2.identityProviders:#providerId#.title" , defaultValue=providerId );
provider.description = $translateResource( uri="saml2.identityProviders:#providerId#.description", defaultValue="" );
provider.acClassRef = provider.acClassRef ?: "urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport"
provider.acClassComparison = provider.acClassComparison ?: "minimum"

return provider;
}
Expand Down

0 comments on commit afc27df

Please sign in to comment.