Diff for /db/prgsrc/updatedb.pl between versions 1.17 and 1.18

version 1.17, 2000/11/11 00:30:06 version 1.18, 2000/11/11 03:58:59
Line 201  sub GetTours { Line 201  sub GetTours {
 sub CreateTour {  sub CreateTour {
     my ($dbh,$title,$ParentId,$TourNum,$rh_defaults)=@_;      my ($dbh,$title,$ParentId,$TourNum,$rh_defaults)=@_;
     my $sth = $dbh->prepare("INSERT INTO Tournaments      my $sth = $dbh->prepare("INSERT INTO Tournaments
                              (Title, Type, ParentId, TourNum)                                (Title, Type, ParentId, Number) 
                              VALUES ($title, 'ô', $ParentId, $TourNum)");                               VALUES ($title, 'ô', $ParentId, $TourNum)");
     $sth->execute;      $sth->execute;
     my $TourId = $sth->{mysql_insertid};      my $TourId = $sth->{mysql_insertid};

Removed from v.1.17  
changed lines
  Added in v.1.18


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>