projects
/
ccbs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
997d9659be23eaf5582237b44007c31b6b509ff8
[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_see_other('show-tournament.pl?id=' . $tournament);
15