Skip to content

Commit 26aaa54

Browse files
Merge pull request chriskacerguis#422 from ekoisa/patch-1
Should this comma ...
2 parents 67c6f66 + bd7b1e5 commit 26aaa54

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

application/libraries/REST_Controller.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1185,12 +1185,12 @@ protected function _perform_ldap_auth($username = '', $password = NULL)
11851185
$this->config->load('ldap.php', TRUE);
11861186

11871187
$ldap = array(
1188-
'timeout' => $this->config->item('timeout', 'ldap');
1189-
'host' => $this->config->item('server', 'ldap');
1190-
'port' => $this->config->item('port', 'ldap');
1191-
'rdn' => $this->config->item('binduser', 'ldap');
1192-
'pass' => $this->config->item('bindpw', 'ldap');
1193-
'basedn' => $this->config->item('basedn', 'ldap');
1188+
'timeout' => $this->config->item('timeout', 'ldap'),
1189+
'host' => $this->config->item('server', 'ldap'),
1190+
'port' => $this->config->item('port', 'ldap'),
1191+
'rdn' => $this->config->item('binduser', 'ldap'),
1192+
'pass' => $this->config->item('bindpw', 'ldap'),
1193+
'basedn' => $this->config->item('basedn', 'ldap'),
11941194
);
11951195

11961196
log_message('debug', 'LDAP Auth: Connect to ' . $ldaphost);

0 commit comments

Comments
 (0)