]> git.sesse.net Git - ccbs/blob - html/do-edit-scores.pl
7d3d4352a7307504dbee14909403ceb84cee977b
[ccbs] / html / do-edit-scores.pl
1 #! /usr/bin/perl
2
3 use ccbs;
4 use strict;
5 use warnings;
6
7 my $dbh = ccbs::db_connect();
8 my $cgi = new CGI;
9
10 my $tournament = $cgi->param('tournament');
11
12 $dbh->disconnect;
13
14 ccbs::print_header();
15 ccbs::print_see_other('show-tournament.pl?id=' . $tournament);
16