diff options
Diffstat (limited to 'phpBB/includes/auth')
-rw-r--r-- | phpBB/includes/auth/auth_ldap.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/includes/auth/auth_ldap.php b/phpBB/includes/auth/auth_ldap.php index b09f6aeb33..c897f90cf0 100644 --- a/phpBB/includes/auth/auth_ldap.php +++ b/phpBB/includes/auth/auth_ldap.php @@ -59,6 +59,11 @@ function admin_ldap(&$new) <td class="row2"><input type="text" size="40" name="ldap_uid" value="<?php echo $new['ldap_uid']; ?>" /></td> </tr> <?php + + // + // These are fields required in the config table + // + return array('ldap_server', 'ldap_base_dn', 'ldap_uid'); } |