Removed leftover query_fetch_first.

1.x
Adirelle 2011-11-14 11:33:29 +01:00
parent adc4755e8b
commit 8cefc4e574
1 changed files with 2 additions and 2 deletions

View File

@ -373,9 +373,9 @@ sub check_login {
unless $CanUseLDAPAuth;
# Get LDAP server informations
my($host, $port, $tls, $account, $account_password, $base_dn, $attr_login) = query_fetch_first(
$dbh,
my($host, $port, $tls, $account, $account_password, $base_dn, $attr_login) = $dbh->selectrow_array(
"SELECT host,port,tls,account,account_password,base_dn,attr_login from auth_sources WHERE id = ?",
undef,
$auth_source_id
);