aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/auth
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-08-07 13:02:48 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-08-07 13:02:48 +0000
commit2b0b8993e795e1e5e815ff385c45e0a331ff9305 (patch)
tree4223231453bb15df42b7acf447048b061f85adcc /phpBB/includes/auth
parent702761f40b28ca5f732c5e06dba0722034da495c (diff)
downloadforums-2b0b8993e795e1e5e815ff385c45e0a331ff9305.tar
forums-2b0b8993e795e1e5e815ff385c45e0a331ff9305.tar.gz
forums-2b0b8993e795e1e5e815ff385c45e0a331ff9305.tar.bz2
forums-2b0b8993e795e1e5e815ff385c45e0a331ff9305.tar.xz
forums-2b0b8993e795e1e5e815ff385c45e0a331ff9305.zip
Return required config fields to board admin
git-svn-id: file:///svn/phpbb/trunk@2839 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/auth')
-rw-r--r--phpBB/includes/auth/auth_ldap.php5
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');
}