summaryrefslogtreecommitdiff
path: root/inc/auth
diff options
context:
space:
mode:
authorElan Ruusamäe <glen@delfi.ee>2010-10-03 18:22:00 +0300
committerElan Ruusamäe <glen@delfi.ee>2010-10-07 21:02:29 +0300
commit7a8cc57ef7c0ea2662ddfc827a1d7ce14c5d2abe (patch)
treeb587ef54076ee02a380f223b4597ccad54158870 /inc/auth
parent86604921a19bfe13ed68b36863ffbba4596855f6 (diff)
downloadrpg-7a8cc57ef7c0ea2662ddfc827a1d7ce14c5d2abe.tar.gz
rpg-7a8cc57ef7c0ea2662ddfc827a1d7ce14c5d2abe.tar.bz2
- spelling fixes
Diffstat (limited to 'inc/auth')
-rw-r--r--inc/auth/ad.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth/ad.class.php b/inc/auth/ad.class.php
index 9ae6dbbd1..90fe0266b 100644
--- a/inc/auth/ad.class.php
+++ b/inc/auth/ad.class.php
@@ -26,7 +26,7 @@
* $conf['auth']['ad']['use_ssl'] = 1;
* $conf['auth']['ad']['debug'] = 1;
*
- * // get additional informations to the userinfo array
+ * // get additional information to the userinfo array
* // add a list of comma separated ldap contact fields.
* $conf['auth']['ad']['additional'] = 'field1,field2';
*
@@ -155,7 +155,7 @@ class auth_ad extends auth_basic {
$info['uid'] = $result[0]['samaccountname'][0];
$info['dn'] = $result[0]['dn'];
- // additional informations
+ // additional information
foreach ($this->cnf['additional'] as $field) {
if (isset($result[0][strtolower($field)])) {
$info[$field] = $result[0][strtolower($field)][0];