From 51b684bb7a773199f225824f5558e4e4ca526ef1 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Mon, 12 May 2008 20:12:57 +1200 Subject: [PATCH] Fix typo. --- inc/drivers_ldap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/drivers_ldap.php b/inc/drivers_ldap.php index 92e56854..9d886c65 100644 --- a/inc/drivers_ldap.php +++ b/inc/drivers_ldap.php @@ -105,7 +105,7 @@ class ldapDrivers if (!ldap_bind($this->connect,$config['bindDN'],$config['passDN'])){ $bindDN = isset($config['bindDN']) ? $config['bindDN'] : 'anonymous'; $passDN = isset($config['passDN']) ? $config['passDN'] : 'anonymous'; - dbg_error_log( "LDAP", i18n('drivers_ldap : Failed to bind to host %1$s on port %2$s with bindDN of %3$s'), $host, $port $bindDN ); + dbg_error_log( "LDAP", i18n('drivers_ldap : Failed to bind to host %1$s on port %2$s with bindDN of %3$s'), $host, $port, $bindDN ); $c->messages[] = i18n( 'drivers_ldap : Unable to bind to LDAP - check your configuration for bindDN and passDN, and that your LDAP server is reachable'); $this->valid=false; return ;