summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
authorSimon Rettberg2015-09-16 10:35:42 +0200
committerSimon Rettberg2015-09-16 10:35:42 +0200
commitac6e2d8df7dae5980a5d5836f1a2e89ece658b4d (patch)
tree1b990acdb2dccf20a6784fe2b870ae7171d4cdeb /inc
parent[Trigger] Consider ldap config modules when launching ldadp instances (diff)
downloadslx-admin-ac6e2d8df7dae5980a5d5836f1a2e89ece658b4d.tar.gz
slx-admin-ac6e2d8df7dae5980a5d5836f1a2e89ece658b4d.tar.xz
slx-admin-ac6e2d8df7dae5980a5d5836f1a2e89ece658b4d.zip
[ldapauth] Pass proper param name to create ldap config
Diffstat (limited to 'inc')
-rw-r--r--inc/configmodule/ldapauth.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/configmodule/ldapauth.inc.php b/inc/configmodule/ldapauth.inc.php
index c5a432e9..9a5f2fb8 100644
--- a/inc/configmodule/ldapauth.inc.php
+++ b/inc/configmodule/ldapauth.inc.php
@@ -22,7 +22,7 @@ class ConfigModule_LdapAuth extends ConfigModule
$config = $this->moduleData;
if (preg_match('/^([^\:]+)\:(\d+)$/', $config['server'], $out)) {
$config['server'] = $out[1];
- $config['ldapport'] = $out[2];
+ $config['adport'] = $out[2]; // sic!
}
$config['parentTask'] = $parent;
$config['failOnParentFail'] = false;