From 8b729b41e4d9ccf882e65d03a3e7263964579142 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Thu, 2 Jan 2003 00:20:40 +0000 Subject: [PATCH] fixed a syntax error --- sbin/userImport.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/userImport.pl b/sbin/userImport.pl index 709bfa7f6..e78c2cc83 100644 --- a/sbin/userImport.pl +++ b/sbin/userImport.pl @@ -104,7 +104,7 @@ while() { WebGUI::SQL->write("insert into authentication (userId,authMethod,fieldName,fieldData) values ($user{userId},'WebGUI','$_',".$dbh->quote($user{$_}).")"); } - if (isIn($_, qw(ldapURL connectDN)) { + if (isIn($_, qw(ldapURL connectDN))) { WebGUI::SQL->write("insert into authentication (userId,authMethod,fieldName,fieldData) values ($user{userId},'LDAP','$_',".$dbh->quote($user{$_}).")"); }