X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=html%2Fdo-set-active-round.pl;h=db32ecea50e3e75f43c453cc9b4a50a8c89b5765;hp=4f8caafe682ecae02f0c50338509dd275079d550;hb=de70f8aa6723fe016286a190ff46c0019b35f7e8;hpb=012a54e59c8d6cd27754c1abfc8a3fba3e2d0fab diff --git a/html/do-set-active-round.pl b/html/do-set-active-round.pl index 4f8caaf..db32ece 100755 --- a/html/do-set-active-round.pl +++ b/html/do-set-active-round.pl @@ -11,14 +11,15 @@ my $tournament = $cgi->param('tournament'); my $round = $cgi->param('round'); my $parallel = $cgi->param('parallel'); my $num_machines = $cgi->param('nummachines'); +my $players_per_machine = $cgi->param('playerspermachine'); $dbh->{AutoCommit} = 0; $dbh->do('DELETE FROM bigscreen.active_groups WHERE tournament=? AND round=? AND parallel=?', undef, $tournament, $round, $parallel); if ($cgi->param('show') eq 'true') { - $dbh->do('INSERT INTO bigscreen.active_groups (tournament, round, parallel, num_machines, last_updated) VALUES (?,?,?,?,now())', - undef, $tournament, $round, $parallel, $num_machines); + $dbh->do('INSERT INTO bigscreen.active_groups (tournament, round, parallel, num_machines, last_updated, players_per_machine) VALUES (?,?,?,?,now(),?)', + undef, $tournament, $round, $parallel, $num_machines, $players_per_machine); } $dbh->do('NOTIFY active_groups');