I had to make another brief modification.
Many of our users do not have a 'uid', but everyone has a 'cn'. So initially I changed the code just to look for "cn=" rather than "uid=". But I realize that may not be very flexible, so I eventually added a variable to ldapconfig.php called $ldapuid which can be set to "uid", "cn", or what-have-you. A quick change to one line in ldap_authentication.php uses the variable.
PHP Code:
//ldap search using the username entered in the login form
// ---- Modified by Mark Tomlinson - 10/19/2007 ----
// $sr=ldap_search($ds, $ldapdn, "uid=$_POST[vb_login_username]");
$sr=ldap_search($ds, $ldapdn, "$ldapuid=$_POST[vb_login_username]");
// ---- End Modifications ----