aboutsummaryrefslogtreecommitdiff
path: root/src/admin/report/webcast.php
diff options
context:
space:
mode:
authorcassio <cassiopc@gmail.com>2018-11-02 17:08:02 +0000
committercassio <cassiopc@gmail.com>2018-11-02 17:08:02 +0000
commit336e0c032cc0f9e9547853f814ebffdfd00c5e2d (patch)
tree67e3316007e99143d14a4e4fe2370ef252f04146 /src/admin/report/webcast.php
parenta9dec1f8e0d0d244b63dd75502c54a4f76efe22f (diff)
downloadboca-336e0c032cc0f9e9547853f814ebffdfd00c5e2d.tar.gz
boca-336e0c032cc0f9e9547853f814ebffdfd00c5e2d.zip
post instead of get
Diffstat (limited to 'src/admin/report/webcast.php')
-rw-r--r--src/admin/report/webcast.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/admin/report/webcast.php b/src/admin/report/webcast.php
index 54ec4b8..a6aaceb 100644
--- a/src/admin/report/webcast.php
+++ b/src/admin/report/webcast.php
@@ -17,8 +17,8 @@
////////////////////////////////////////////////////////////////////////////////
require('header.php');
-if(!isset($_GET['webcastcode']) || !ctype_alnum($_GET['webcastcode'])) exit;
-$webcastcode=$_GET['webcastcode'];
+if(!isset($_POST['webcastcode']) || !ctype_alnum($_POST['webcastcode'])) exit;
+$webcastcode=$_POST['webcastcode'];
$ds = DIRECTORY_SEPARATOR;
if($ds=="") $ds = "/";
@@ -69,7 +69,7 @@ $ct = DBContestInfo($contest);
if(($st = DBSiteInfo($contest, $site)) == null)
ForceLoad("../index.php");
-if(isset($_GET['full']) && $_GET['full'] > 0)
+if(isset($_POST['full']) && $_POST['full'] > 0)
$freezeTime = $st['siteduration'];
else
$freezeTime = $st['sitelastmilescore'];