Skip to content

Commit 45979e0

Browse files
committed
these are all handled in the same place, so if we're doing it for one, we should do it for all
1 parent 33b4e1c commit 45979e0

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

onelogin-saml-sso/php/functions.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@
1111

1212
function saml_checker() {
1313
/**
14-
* Allow saml_acs URL query variable to be customized.
14+
* Allow saml_acs query variables to be customized.
1515
*/
16-
$saml_acs = apply_filters( 'onelogin_saml_acs', 'saml_acs' );
16+
$saml_acs = apply_filters( 'onelogin_saml_acs', 'saml_acs' );
17+
$saml_sls = apply_filters( 'onelogin_saml_sls', 'saml_sls' );
18+
$saml_metadata = apply_filters( 'onelogin_saml_metadata', 'saml_metadata' );
19+
$saml_validate_config = apply_filters( 'onelogin_saml_validate_config', 'saml_validate_config' );
20+
1721
if ( isset( $_GET[ $saml_acs ] ) ) {
1822
saml_acs();
1923
}

0 commit comments

Comments
 (0)