We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33b4e1c commit 45979e0Copy full SHA for 45979e0
1 file changed
onelogin-saml-sso/php/functions.php
@@ -11,9 +11,13 @@
11
12
function saml_checker() {
13
/**
14
- * Allow saml_acs URL query variable to be customized.
+ * Allow saml_acs query variables to be customized.
15
*/
16
- $saml_acs = apply_filters( 'onelogin_saml_acs', 'saml_acs' );
+ $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
+
21
if ( isset( $_GET[ $saml_acs ] ) ) {
22
saml_acs();
23
}
0 commit comments