diff options
author | Jaime Perez Crespo <jaime.perez@uninett.no> | 2015-04-22 14:31:16 +0200 |
---|---|---|
committer | Jaime Perez Crespo <jaime.perez@uninett.no> | 2015-04-22 14:31:16 +0200 |
commit | 2823c27a7d84fe2ba776980b0b211e5433dab409 (patch) | |
tree | 70a5152ad3b13895b65e44b819bf75ad49e6cf24 /modules/exampleauth | |
parent | 7ee4677b6e9bd8e8d878a0f1705d9eb92b71a928 (diff) | |
download | simplesamlphp-2823c27a7d84fe2ba776980b0b211e5433dab409.zip simplesamlphp-2823c27a7d84fe2ba776980b0b211e5433dab409.tar.gz simplesamlphp-2823c27a7d84fe2ba776980b0b211e5433dab409.tar.bz2 |
Move SimpleSAML_Utilities:: checkURLAllowed() to SimpleSAML\Utils\HTTP:: checkURLAllowed() and deprecate the former.
Diffstat (limited to 'modules/exampleauth')
-rw-r--r-- | modules/exampleauth/www/authpage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/exampleauth/www/authpage.php b/modules/exampleauth/www/authpage.php index cf4c96c..fa77c9f 100644 --- a/modules/exampleauth/www/authpage.php +++ b/modules/exampleauth/www/authpage.php @@ -13,7 +13,7 @@ if (!isset($_REQUEST['ReturnTo'])) { die('Missing ReturnTo parameter.'); } -$returnTo = SimpleSAML_Utilities::checkURLAllowed($_REQUEST['ReturnTo']); +$returnTo = \SimpleSAML\Utils\HTTP::checkURLAllowed($_REQUEST['ReturnTo']); /* |