fix usergroup_delete DELETE syntax
authorivan <ivan>
Wed, 17 Apr 2002 20:43:45 +0000 (20:43 +0000)
committerivan <ivan>
Wed, 17 Apr 2002 20:43:45 +0000 (20:43 +0000)
FS/FS/part_export/sqlradius.pm

index fa2153f..7337b5a 100644 (file)
@@ -143,10 +143,10 @@ sub sqlradius_usergroup_delete { #subroutine, not method
   my( $username, @groups ) = @_;
 
   my $sth = $dbh->prepare( 
   my( $username, @groups ) = @_;
 
   my $sth = $dbh->prepare( 
-    "DELETE FROM usergroup ( id, UserName, GroupName ) VALUES ( ?, ?, ? )"
+    "DELETE FROM usergroup WHERE UserName = ? AND GroupName = ?"
   ) or die $dbh->errstr;
   foreach my $group ( @groups ) {
   ) or die $dbh->errstr;
   foreach my $group ( @groups ) {
-    $sth->execute( '', $username, $group )
+    $sth->execute( $username, $group )
       or die "can't delete from groupname table: ". $sth->errstr;
   }
   $dbh->disconnect;
       or die "can't delete from groupname table: ". $sth->errstr;
   }
   $dbh->disconnect;