fix php warning

yourls_get_option default value is false unless other default is specified
This commit is contained in:
Mario Hros 2020-08-05 13:49:26 +02:00
parent c4ad990ab2
commit 412c079b03
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ function ldapauth_merge_users() {
if ( !ldapauth_environment_check() ) {
die( 'Invalid configuration for YOURLS LDAP plugin. Check PHP error log.' );
}
if(LDAPAUTH_USERCACHE_TYPE==1 && null !== yourls_get_option('ldapauth_usercache')) {
if(LDAPAUTH_USERCACHE_TYPE==1 && false !== yourls_get_option('ldapauth_usercache')) {
ldapauth_debug("Merging text file users and cached LDAP users");
$yourls_user_passwords = array_merge($yourls_user_passwords, yourls_get_option('ldapauth_usercache'));
}