Skip to content
Snippets Groups Projects
Commit d9f0f546 authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Add $authority parameter to initLogoutReturn which was previously removed...

Add $authority parameter to initLogoutReturn which was previously removed instead of making it mandatory.
parent 9179f3c2
No related branches found
No related tags found
No related merge requests found
...@@ -147,10 +147,10 @@ class SimpleSAML_Auth_Default { ...@@ -147,10 +147,10 @@ class SimpleSAML_Auth_Default {
* logging out. No checking is performed on the URL, so make sure to verify * logging out. No checking is performed on the URL, so make sure to verify
* it on beforehand if the URL is obtained from user input. Refer to * it on beforehand if the URL is obtained from user input. Refer to
* SimpleSAML_Utilities::checkURLAllowed() for more information. * SimpleSAML_Utilities::checkURLAllowed() for more information.
* @param string|NULL $authority The authentication source we are logging * @param string $authority The authentication source we are logging
* out from. * out from.
*/ */
public static function initLogoutReturn($returnURL) { public static function initLogoutReturn($returnURL, $authority) {
assert('is_string($returnURL)'); assert('is_string($returnURL)');
assert('is_string($authority)'); assert('is_string($authority)');
......
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