Plugin Directory

Changeset 1988298


Ignore:
Timestamp:
12/07/2018 08:32:47 PM (7 years ago)
Author:
warren.brown
Message:

Updates faulty array_key_exists in ldap.php ln. 21

Location:
ugrm
Files:
2 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ugrm/tags/2.1/ldap.php

    r1867722 r1988298  
    1919        $this->basedn = $config['basedn'];
    2020        $this->ldap_uri = $config['ldapUri'];
    21         $this->log_path = array_key_exists($config['queryLogPath']) ? $config['queryLogPath'] : NULL;
     21        $this->log_path = array_key_exists($config['queryLogPath'], $config) ? $config['queryLogPath'] : NULL;
    2222        $this->setLink();
    2323    }
  • ugrm/trunk/ldap.php

    r1867722 r1988298  
    1919        $this->basedn = $config['basedn'];
    2020        $this->ldap_uri = $config['ldapUri'];
    21         $this->log_path = array_key_exists($config['queryLogPath']) ? $config['queryLogPath'] : NULL;
     21        $this->log_path = array_key_exists($config['queryLogPath'], $config) ? $config['queryLogPath'] : NULL;
    2222        $this->setLink();
    2323    }
Note: See TracChangeset for help on using the changeset viewer.