]> git.sesse.net Git - ccbs/blobdiff - html/do-edit-scores.pl
Add hidden tournament and round form elements.
[ccbs] / html / do-edit-scores.pl
diff --git a/html/do-edit-scores.pl b/html/do-edit-scores.pl
new file mode 100755 (executable)
index 0000000..7d3d435
--- /dev/null
@@ -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);
+