diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2017-07-30 16:22:32 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2017-07-30 16:22:32 +0000 |
| commit | f78dbc4493f67167f6f4367c6be8792475f6fcc3 (patch) | |
| tree | b18b58ce56162520103a08ad21b7aea617efa4f9 /src/fextdata.php | |
| parent | e8b566439af4bf24aaf4ebfc72d510a4222b5a9b (diff) | |
| download | boca-f78dbc4493f67167f6f4367c6be8792475f6fcc3.tar.gz boca-f78dbc4493f67167f6f4367c6be8792475f6fcc3.zip | |
bug fixes
Diffstat (limited to 'src/fextdata.php')
| -rw-r--r-- | src/fextdata.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fextdata.php b/src/fextdata.php index e43d0af..e531a77 100644 --- a/src/fextdata.php +++ b/src/fextdata.php @@ -453,15 +453,15 @@ function genSQLs($contest, $site, $updatetime) { $sql['langtable']="select * from langtable where contestnumber=$contest and updatetime >= $updatetime"; $sql['problemtable']="select * from problemtable where contestnumber=$contest and fake='f' and updatetime >= $updatetime"; // $sql['sitetimetable']="select * from sitetimetable where contestnumber=$contest and sitenumber=$site and updatetime >= $updatetime"; - $sql['usertable']="select * from usertable where contestnumber=$contest and sitenumber=$site and updatetime >= $updatetime"; - $sql['clartable']="select * from clartable where contestnumber=$contest and sitenumber=$site and updatetime >= $updatetime"; - $sql['runtable']="select * from runtable where contestnumber=$contest and sitenumber=$site and updatetime >= $updatetime"; + $sql['usertable']="select * from usertable where contestnumber=$contest and usersitenumber=$site and updatetime >= $updatetime"; + $sql['clartable']="select * from clartable where contestnumber=$contest and clarsitenumber=$site and updatetime >= $updatetime"; + $sql['runtable']="select * from runtable where contestnumber=$contest and runsitenumber=$site and updatetime >= $updatetime"; $sql['tasktable']="select * from tasktable where contestnumber=$contest and sitenumber=$site and updatetime >= $updatetime"; return $sql; } function generateSiteXML($contest,$site,$updatetime) { - $sql = genSQL($contest, $site, $updatetime); + $sql = genSQLs($contest, $site, $updatetime); $c = DBConnect(); if ($c==null) return null; DBExec($c, "begin work"); |