Comment 1 for bug 1560131

Revision history for this message
kloostec (kloostec) wrote :

This diff fixed logins and logouts on our server with SimpleSAMLPHP 1.14.2.

It appears that they've taken away the ability to query the SimpleSAML_Session object for many parameters. For example, instead of:

$saml_session->getIdP();

they want you to do:

$as->getAuthData('saml:sp:IdP');

I couldn't figure out a good way to replace ->getAuthority() so I moved the code to figure out which SP to use above the logout functionality and use that instead. This is probably just because I don't work with the SimpleSAMLPHP code enough to understand where that functionality went.

Chris