X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=html%2Fdo-edit-scores.pl;fp=html%2Fdo-edit-scores.pl;h=7d3d4352a7307504dbee14909403ceb84cee977b;hb=2af69ca729a57a65bc0afdded897ccdaa04bf315;hp=0000000000000000000000000000000000000000;hpb=0f7fc7ef67f2e6f97fedce37e9097356bf8f9233;p=ccbs diff --git a/html/do-edit-scores.pl b/html/do-edit-scores.pl new file mode 100755 index 0000000..7d3d435 --- /dev/null +++ b/html/do-edit-scores.pl @@ -0,0 +1,16 @@ +#! /usr/bin/perl + +use ccbs; +use strict; +use warnings; + +my $dbh = ccbs::db_connect(); +my $cgi = new CGI; + +my $tournament = $cgi->param('tournament'); + +$dbh->disconnect; + +ccbs::print_header(); +ccbs::print_see_other('show-tournament.pl?id=' . $tournament); +