diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2017-10-30 18:38:15 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2017-10-30 18:38:15 +0000 |
| commit | ae3e5cb4c72c4461a702ac2096df7946f3660ca3 (patch) | |
| tree | 57c53a0b4ee1bbdeaa471838623743711f0c1966 /src/fclar.php | |
| parent | 96b6addadf6401a70365ca09fc2373dae1e03e0d (diff) | |
| download | boca-ae3e5cb4c72c4461a702ac2096df7946f3660ca3.tar.gz boca-ae3e5cb4c72c4461a702ac2096df7946f3660ca3.zip | |
make items appear
Diffstat (limited to 'src/fclar.php')
| -rw-r--r-- | src/fclar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fclar.php b/src/fclar.php index 72364e8..4555e07 100644 --- a/src/fclar.php +++ b/src/fclar.php @@ -478,7 +478,7 @@ function DBOpenClarsSNS($contest,$site,$st,$order='clar') { "from clartable as c, problemtable as p " . "where c.contestnumber=$contest and p.contestnumber=c.contestnumber and " . "c.clarproblem=p.problemnumber"; - if ($site != "x") { + if (strpos($site,"x")===false) { $str = explode(",", $site); $sql .= " and (c.clarstatus='answeredall'"; for ($i=0;$i<count($str);$i++) { |