aboutsummaryrefslogtreecommitdiff
path: root/scripts/authuser.php
diff options
context:
space:
mode:
authorpmichaud <pmichaud@524c5546-5005-0410-9a3e-e25e191bd360>2007-09-13 17:27:01 +0000
committerpmichaud <pmichaud@524c5546-5005-0410-9a3e-e25e191bd360>2007-09-13 17:27:01 +0000
commit23b1b50d5cff1965f32c284fc555a59a00e7a9b4 (patch)
tree6cbd7d4d55b0e8bf68db6c242af00d92b66fa15e /scripts/authuser.php
parent45354c4293ca68329baf8095cb1d6d85701e1760 (diff)
downloadpmwiki.svn-23b1b50d5cff1965f32c284fc555a59a00e7a9b4.tar.bz2
Fix up error message for LDAP authentication.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@2190 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'scripts/authuser.php')
-rw-r--r--scripts/authuser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/authuser.php b/scripts/authuser.php
index 0cd05a15..89dbeada 100644
--- a/scripts/authuser.php
+++ b/scripts/authuser.php
@@ -130,7 +130,7 @@ function AuthUserLDAP($pagename, $id, $pw, $pwlist) {
global $AuthLDAPBindDN, $AuthLDAPBindPassword;
if (!$pw) return false;
if (!function_exists('ldap_connect'))
- Abort('authuser: LDAP authentication requires ldap functions', 'ldapfn');
+ Abort('authuser: LDAP authentication requires PHP ldap functions','ldapfn');
foreach ((array)$pwlist as $ldap) {
if (!preg_match('!(ldaps?://[^/]+)/(.*)$!', $ldap, $match))
continue;