sll_remove_default_authentication_hook
-
I am attempting to use sll_remove_default_authentication_hook to override the high_security setting to local fallback for REST requests using an application password.
However, I am not successful because …/simple-ldap-login/Simple-LDAP-Login.php:438 is just checking the value of high_security instead of sending it through the filter. If the line were changed from
} elseif (str_true($this->get_setting('high_security')) && !$local_admin) {
to} elseif (apply_filters('sll_remove_default_authentication_hook', str_true($this->get_setting('high_security')) && !$local_admin)){
my issue would be resolved.
- The topic ‘sll_remove_default_authentication_hook’ is closed to new replies.