aboutsummaryrefslogtreecommitdiff
path: root/src/admin
diff options
context:
space:
mode:
Diffstat (limited to 'src/admin')
-rw-r--r--src/admin/report/clar.php2
-rw-r--r--src/admin/report/run.php6
-rw-r--r--src/admin/report/task.php2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/admin/report/clar.php b/src/admin/report/clar.php
index 66bd4cd..61816d9 100644
--- a/src/admin/report/clar.php
+++ b/src/admin/report/clar.php
@@ -40,7 +40,7 @@ $s = $st;
if (trim($s["sitejudging"])!="") $s["sitejudging"].=",".$_SESSION["usertable"]["usersitenumber"];
else $s["sitejudging"]=$_SESSION["usertable"]["usersitenumber"];
-$clar = DBAllClarsInSites($_SESSION["usertable"]["contestnumber"], $s["sitejudging"], 'normal');
+$clar = DBAllClarsInSites($_SESSION["usertable"]["contestnumber"], $s["sitejudging"], 'report');
for ($i=0; $i<count($clar); $i++) {
echo " <tr>\n";
diff --git a/src/admin/report/run.php b/src/admin/report/run.php
index 422200d..9b65d2b 100644
--- a/src/admin/report/run.php
+++ b/src/admin/report/run.php
@@ -1,7 +1,7 @@
<?php
////////////////////////////////////////////////////////////////////////////////
//BOCA Online Contest Administrator
-// Copyright (C) 2003-2012 by BOCA Development Team (bocasystem@gmail.com)
+// Copyright (C) 2003-2013 by BOCA Development Team (bocasystem@gmail.com)
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
////////////////////////////////////////////////////////////////////////////////
-// Last modified 05/aug/2012 by cassio@ime.usp.br
+// Last modified 06/sep/2013 by cassio@ime.usp.br
require('header.php');
?>
@@ -40,7 +40,7 @@ $s = $st;
if (trim($s["sitejudging"])!="") $s["sitejudging"].=",".$_SESSION["usertable"]["usersitenumber"];
else $s["sitejudging"]=$_SESSION["usertable"]["usersitenumber"];
-$run = DBAllRunsInSites($_SESSION["usertable"]["contestnumber"], $s["sitejudging"], 'normal');
+$run = DBAllRunsInSites($_SESSION["usertable"]["contestnumber"], $s["sitejudging"], 'report');
for ($i=0; $i<count($run); $i++) {
echo " <tr>\n";
diff --git a/src/admin/report/task.php b/src/admin/report/task.php
index 59ca0e2..30f3799 100644
--- a/src/admin/report/task.php
+++ b/src/admin/report/task.php
@@ -33,7 +33,7 @@ require('header.php');
</tr>
<?php
$s = $st;
-$task = DBAllTasksInSites($_SESSION["usertable"]["contestnumber"], $s["sitetasking"], 'normal');
+$task = DBAllTasksInSites($_SESSION["usertable"]["contestnumber"], $s["sitetasking"], 'report');
$cf = globalconf();
for ($i=0; $i<count($task); $i++) {
$st = $task[$i]["status"];