diff options
author | Jaime Perez Crespo <jaime.perez@uninett.no> | 2015-04-22 14:15:26 +0200 |
---|---|---|
committer | Jaime Perez Crespo <jaime.perez@uninett.no> | 2015-04-22 14:15:26 +0200 |
commit | 7ee4677b6e9bd8e8d878a0f1705d9eb92b71a928 (patch) | |
tree | cbba156459ba76b19ec10a7b608bdf926e1d5870 /modules/authYubiKey/lib/Auth/Source/YubiKey.php | |
parent | c3004163d5a7f60415467bce8250ea26d8759978 (diff) | |
download | simplesamlphp-7ee4677b6e9bd8e8d878a0f1705d9eb92b71a928.zip simplesamlphp-7ee4677b6e9bd8e8d878a0f1705d9eb92b71a928.tar.gz simplesamlphp-7ee4677b6e9bd8e8d878a0f1705d9eb92b71a928.tar.bz2 |
Move SimpleSAML_Utilities:: redirectTrustedURL() to SimpleSAML\Utils\HTTP:: redirectTrustedURL() and deprecate the former.
Diffstat (limited to 'modules/authYubiKey/lib/Auth/Source/YubiKey.php')
-rw-r--r-- | modules/authYubiKey/lib/Auth/Source/YubiKey.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/authYubiKey/lib/Auth/Source/YubiKey.php b/modules/authYubiKey/lib/Auth/Source/YubiKey.php index 48c3047..865ceef 100644 --- a/modules/authYubiKey/lib/Auth/Source/YubiKey.php +++ b/modules/authYubiKey/lib/Auth/Source/YubiKey.php @@ -103,7 +103,7 @@ class sspmod_authYubiKey_Auth_Source_YubiKey extends SimpleSAML_Auth_Source { $id = SimpleSAML_Auth_State::saveState($state, self::STAGEID); $url = SimpleSAML_Module::getModuleURL('authYubiKey/yubikeylogin.php'); - SimpleSAML_Utilities::redirectTrustedURL($url, array('AuthState' => $id)); + \SimpleSAML\Utils\HTTP::redirectTrustedURL($url, array('AuthState' => $id)); } |